我正在尝试通过WebView阅读在线pdf并启用它来水平滑动读取。有可能吗?
这是我的代码,同时阅读pdf:
String doc = "<iframe src='http://docs.google.com/viewer?url=https://source.android.com/security/reports/Google_Android_Security_2017_Report_Final.pdf&embedded=true' width='100%' height='100%' style='border: none;'></iframe>";
pdfWebView.setWebViewClient(new WebViewClient());
pdfWebView.getSettings().setJavaScriptEnabled(true);
pdfWebView.getSettings().setAllowFileAccess(true);
pdfWebView.loadData( doc , "text/html", "UTF-8");
由于