如何从驱动器查看PDF文件

时间:2018-07-20 07:30:50

标签: android

我的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);

此代码不起作用。

1 个答案:

答案 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);

还要确保网址有效。