我正在使用 WebView 打开一个实际上是 pdf 文档的 url。这是代码片段。
WebView webView = (WebView) context.findViewById(R.id.webView1);
webView.getSettings().setJavaScriptEnabled(true);
webView.getSettings().setLoadWithOverviewMode(true);
webView.getSettings().setUseWideViewPort(true);
webView.loadUrl("http://www.stagecoachbus.com/PdfUploads/Timetable_28768_5.pdf");
得到的错误是:
EventHub.removeMessages(int what = 107) is not supported before the WebViewCore is set up
我能够打开正常的网页。但是,打开 pdf 文件会导致异常。
有什么想法吗?
提前致谢!