我正在尝试使用该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);`