First off, sorry if this has been asked but I cannot find it. I am downloading documents in my app from a remote resource. Once the document is downloaded, I want to open it for the user. What I want to know is how do I check if they have an application to handle Pdf or Tiff and launch it in the default application for them?

Thank you.

edit

here is part of the solution:

Intent viewDoc = new Intent(Intent.ACTION_VIEW);
viewDoc.setDataAndType(
    Uri.fromFile(getFileStreamPath("test.pdf")), 
    "application/pdf");

PackageManager pm = getPackageManager();
List<ResolveInfo> apps = 
    pm.queryIntentActivities(viewDoc, PackageManager.MATCH_DEFAULT_ONLY);

if (apps.size() > 0)
    startActivity(viewDoc);
link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Step #1: Create an ACTION_VIEW Intent, using setDataAndType() to provide a Uri to your downloaded file (e.g., Uri.fromFile()) and the MIME type of the content (e.g., application/pdf).

From there, you have two options:

Step #2a: Use PackageManager and queryIntentActivities() with that Intent. If it returns a zero-length list, you know there are no candidates, and therefore can disable any buttons, menu choices, or whatever that would lead to calling startActivity() on that Intent.

or

Step #2b: Just call startActivity() when the user wants to view it, and catch the exception that occurs when there are no supported apps installed. This is simpler than #2a above, but not quite as user-friendly.

link|improve this answer
If I have a byte[] of the file will this method still work if I dont want to save it to disk? – Tom Fobear Feb 11 '11 at 14:18
@Tom Fobear: You have no choice but to save it to disk, in a place that can be read by the other application. That means either storing it in external storage, or storing it as a MODE_WORLD_READABLE file in your app-local file store, or storing it as a normal (deny-all) file in the app-local file store and using a content provider to make it available to other apps. – CommonsWare Feb 11 '11 at 14:26
Ran into a problem, On my device there were multiple apps that claimed they supported my intent using your PackageManager method. I found out that the files were saving correctly. For example, once I downloaded adobe reader I could view pdfs I launched from my activity. Is there a more legit method to check for good apps besides hardcoding possible choices in? Thank you. – Tom Fobear Feb 13 '11 at 1:49
@Tom Fobear: Could you provide the exact Intent you were using with PackageManager? – CommonsWare Feb 13 '11 at 2:47
added to question – Tom Fobear Feb 13 '11 at 3:33
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.