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]
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.

Reply via email to