在应用

时间:2017-07-20 12:50:12

标签: android pdf-viewer

我在已知位置的设备上下载了pdf文件。我想在我的应用程序中显示它。我尝试了几个pdf查看器库,如:

https://github.com/JoanZapata/android-pdfview         <--- This is deprecated.
https://github.com/jblough/Android-Pdf-Viewer-Library <--- Does not display pdf properly. I mean it has several issues while loading pdf.
https://github.com/barteksc/AndroidPdfViewer          <--- So far best I could find over the internet.


以上都没有关于导航到文件中某些标题的超链接的工作


我知道我可以在 Google驱动器查看器中显示pdf文件,但我不想这样。
所以任何人都可以在android中建议我相关的pdf查看器库,我可以插入我的项目吗?

1 个答案:

答案 0 :(得分:0)

使用google doc viewer查看pdf,无需任何外部库。

String pdf = "http://www.pdf995.com/samples/pdf.pdf";
webview.loadUrl("http://drive.google.com/viewerng/viewer?embedded=true&url=" + pdf);