I know how to load a PDF file in Android. But if more than one PDF viewers are installed, Android shows a list to choose from. I want to load my PDF file with a specific PDF viewer (say DroidReader). How to do this?
feedback
|
|
Then specify the complete name of the activity:
To know what the package name and activity are, you could take a look at the Lastly, but important, you should surround the | |||||||||||||
feedback
|
|
I would strongly recommend not specifying an explicit class name in the Intent as the accepted answer recommends, since that is an implementation detail of the app that can change at any time on you. Instead, build your Intent like normal, but use Intent.setPackage() to specify the system should only look in the desired app's package name for matching activities. That is:
| |||||
feedback
|