0

我正在尝试使用该PDFViewer.jar将 pdf 读入我的应用程序 android pdf 阅读器。

我想知道如何从资产文件夹中的资源中读取 pdf。它需要“到 PDF 的路径到这里”

Intent intent = new Intent(this, YourPdfViewerActivity.class);
intent.putExtra(PdfViewerActivity.EXTRA_PDFFILENAME, "PATH TO PDF GOES HERE");
startActivity(intent);`
4

2 回答 2

0

是的,路径是必需的

Intent intent = new Intent(this, YourPdfViewerActivity.class);
             intent.putExtra(PdfViewerActivity.EXTRA_PDFFILENAME, "file:///android_asset/pdf_name.pdf");
             startActivity(intent);
于 2014-04-09T05:17:47.860 回答
0

它解释得很好,对我有用。

http://upadhyayjiteshandroid.blogspot.com/2013/03/android-pdf-viewer-application.html?showComment=1397014240605#c4120910608580621305

于 2014-04-09T04:52:17.900 回答