Hii i am working on an application in which i require to select files using browse button.. How can i implement a browse button in android?
You need to do:
Create a button which runs a separate activity(startActivityForResult).
This file choosing activity should list all the files and folders from a particular location. If you click on a folder, then activity is reinitialized for this folder(list the files from this).
If a file clicked, then activity should set the result, passing the filename in extras, and finish.