Reputation: 6912
My Code is :
File file = new File(docpath);
String mimetype = "application/pdf";
Uri path = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, mimetype);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
If I want to use the application/pdf method What should I do?
Upvotes: 1
Views: 1840
Reputation: 2108
PDFs are not naturally supported in android. You will need to use an open source library.
Android PDF Viewer, for example. http://code.google.com/p/apv/
Upvotes: 1