java - How to start file browser app from Android application? -


i have app started "share via" menu , list of selected files input. now, let user able run file browsing app app , results.

i know example can start phonebook , obtain choosen contact(s) following code:

intent intent = new intent(intent.action_pick, contactscontract.contacts.content_uri); startactivityforresult(intent, pick_contact); 

so question is: there similar way run file browser , in return list of files selected?

edit: "possible duplicated post" partially similar, ask how start file manager inside specific path, , way hasn't accepted answer. need, if possible, start file manager (if there one) specific path , in return selected files.

thank much

cristiano

ok, found answer here on , combining davidjohns comment i've got need.

thank cristiano


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -