Just like opening any other type of file on Android, you should try to
launch an intent to view it.
Intent openPdfIntent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(pdfFile), "application/pdf");
try
{
startIntent(openPdfIntent);
}
catch(ActivityNotFoundException e)
{
// No app can open PDF files on their phone.
}
--
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