将pdf文件链接到Android应用程序

时间:2015-03-12 20:47:40

标签: android pdf

嗨,我是Android编程的新手。有没有办法将pdf文件链接到您正在开发的Android应用程序?如单击按钮或超级链接将打开PDF文件?

1 个答案:

答案 0 :(得分:0)

您可以使用webview并传递pdf的网址来显示。

WebView webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true); 

// load the pdf.
String pdf = 'http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf';
webview.loadUrl('http://docs.google.com/gview?embedded=true&url=' + pdf);