I just tried this on my nexus one and it works fine -- gallery is one of the options in the list of things to complete the action.
Note that when doing this kind of intent, you should wrap it in a chooser as documented in ACTION_GET_CONTENT, so the user can not select a default item for the options (and if they have somehow managed to select a default one, it won't prevent you from showing the entire list). This is the recommended way of having the user select content for you. If they want to have a file browser, they can install an app that also supports this intent for picking files, and it will show up in the list. For most users, though, making them deal with a file browser is NOT desirable. On Sun, Mar 28, 2010 at 7:39 AM, Tatyana Ulyanova <[email protected]>wrote: > Hello, friends! > > I am developing an application which shows dialog to pick file and > than processes it. > I used standard way: > > Intent intentBrowseFiles = new > Intent(Intent.ACTION_GET_CONTENT); > intentBrowseFiles.setType("*/*"); > > intentBrowseFiles.addCategory(Intent.CATEGORY_OPENABLE); > > but sometimes users say that using that intent they couldn't choose > even their photos:( (for example, on Android 2.1, Nexus One) > > So, i decide to take a look to openintent's File IO Manager > http://www.openintents.org/en/node/159 It is very good way to chose > file I think! > But what is it right way to use it in my application? File IO Manager > must be installed on the phone while my application could use their > nice intents. So, what should I do: > 1. Ask user to install File IO Manager. > 2. Build File IO in my application > 3. Build in the installation of my application installation of File IO > Manager > 4. some other way... > > Much appreciate for any suggestion))) > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected]<android-developers%[email protected]> > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > > To unsubscribe from this group, send email to android-developers+ > unsubscribegooglegroups.com or reply to this email with the words "REMOVE > ME" as the subject. > -- Dianne Hackborn Android framework engineer [email protected] Note: please don't send private questions to me, as I don't have time to provide private support, and so won't reply to such e-mails. All such questions should be posted on public forums, where I and others can see and answer them. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en To unsubscribe from this group, send email to android-developers+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.

