可能重复:
android webview pdf
我正在尝试在我自己的包含大图像的活动中打开 PDF。使用 MuPDF 和其他库会降低我的应用程序性能,所以我不想使用它。
是否可以使用android中SD卡文件中的webview在自己的活动中打开PDF?
任何帮助将不胜感激......谢谢!
可能重复:
android webview pdf
我正在尝试在我自己的包含大图像的活动中打开 PDF。使用 MuPDF 和其他库会降低我的应用程序性能,所以我不想使用它。
是否可以使用android中SD卡文件中的webview在自己的活动中打开PDF?
任何帮助将不胜感激......谢谢!
You may find Android PDF problem same as yours (of date Nov 2010), suggesting you to open stored pdf with Intent Call.
File file = new File("/sdcard/your_file.pdf");
Uri path = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
Also check How do I determine if Android can handle PDF