[android-developers] Re: file browser view : does it exist ?

2008-12-11 Thread szeldon
I think that you have to do it by yourself. There is a tutorial about this on anddev.org. On Dec 11, 12:07 pm, Fräntz Miccoli [EMAIL PROTECTED] wrote: I'm seeking a file browser view to enable my user to pick a file from its file system to my apps. Does it already exist ? It seems to be a

[android-developers] Re: file browser view : does it exist ?

2008-12-11 Thread Peli
Now there is also the OI File Manager: http://www.openintents.org/en/node/159 You can use simple intents in your application to call it for Open, Save, and Select folder. In the simplest version, just use: Intent intent = new Intent(org.openintents.action.PICK_FILE);