如何在不下载文件的情况下通过Android Web浏览器显示PDF

时间:2015-12-20 11:17:14

标签: android pdf

我必须从URL显示pdf。 当我直接在webview中打开网址时,它会要求我下载pdf,然后根据我想用来查看它的应用程序进行查看。 但我不想下载pdf,它必须直接显示。

我在SO上推荐的一些答案建议使用docs.google.com

就像这里:How to display a PDF via Android web browser without "downloading" first

但这似乎不再适用了。

2 个答案:

答案 0 :(得分:1)

使用这个:

enter image description here

例如。 webview.loadUrl( “https://docs.google.com/viewer?url=[url_pdf]”);

答案 1 :(得分:0)

在你的身体标签中使用它

    <iframe src="http://example.com/yourpdf" width="100%" height="100%" style="border: none;">This browser does not support PDFs. Please download the PDF to view it: <a href="http://example.com/yourpdf">Download PDF</a></iframe>