Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将编写一个 android 应用程序,其中将包含一个 PDF 文件(包含在应用程序中)。我的任务是,当我单击一个按钮时,应该打开 pdf 文件。PDf 文件放置在 assets/raw 中(不确定放置在哪里)。
任何人都可以帮助解决这个问题...
提前致谢
您可以通过 webview 和 google 文档打开 pdf。你应该使用
WebView.loadUrl("http://docs.google.com/gview?embedded=true&url=www.site.com/file.pdf");
我会使用PDF 渲染器将文件转换为位图。否则,您将不得不使用另一个应用程序来打开文件,或者使用 Walter 给您的选项。这是一个使用不同库以使用 Java 呈现 PDF 的示例。