根据许多人的建议,我正在尝试使用 goolge docs 在 WebView 中显示 pdf。
这是我的代码:
@SuppressLint("SetJavaScriptEnabled")
public void setDocumentPath(final String path) {
WebView webView = (WebView) findViewById(R.id.webview);
webView.getSettings().setJavaScriptEnabled(true);
webView.getSettings().setPluginsEnabled(true);
webView.loadUrl("https://docs.google.com/viewer?url=http://www.selab.isti.cnr.it/ws-mate/example.pdf");
}
PDF 只是我在网上找到的一些示例。它在我的浏览器中运行,但在我的 android 模拟器和设备上显示“网页不可用”。
两者都运行 android 4.0。
有什么明显的我失踪了吗?谢谢你。