我尝试使用以下代码使用WebView显示PDF文件 -
webview.loadUrl("http://www.mywebsite.co.uk/floorplan.pdf");
或
Uri uri = Uri.parse("http://www.mywebsite.co.uk/floorplan.pdf");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
使用其中任何一个我无法显示PDF,除非我通过Adobe运行它(所以我的应用程序正在下载它),然后看起来很好。如何通过我的应用程序使用Adobe显示PDF,或者我最好将PDF显示为图像?
答案 0 :(得分:3)