我的Google云端硬盘帐户中有一些PDF文件,因此我如何使用intent或webview在android studio中查看该PDF文件。我该怎么做。
public String co="https://drive.google.com/file/d/1kr3y_2EI8-uyDeMI5DpMFLnMQDVqI-3Z/view?usp=sharing"
webview.loadURL(co);
此代码不起作用。
答案 0 :(得分:0)
我认为你失踪了
getLanguage
webView.getSettings().setJavaScriptEnabled(true);
或者您可以使用:
public String co="https://drive.google.com/file/d/1kr3y_2EI8-uyDeMI5DpMFLnMQDVqI3Z/view?usp=sharing"
webView.getSettings().setJavaScriptEnabled(true);
webview.loadURL(co);
还要确保网址有效。