在谷歌驱动器中显示pdf

时间:2018-03-06 15:07:24

标签: android pdf google-drive-api

我找到了简单的解决方案,如果有人问解决方案使用这些没有必要使用webview。

 String fullPath = "https://drive.google.com/open?id=1svKjgGhtS90u7n4D64ZcnzGxh9-X4kJx";
        Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(fullPath));
        startActivity(browserIntent);

1 个答案:

答案 0 :(得分:0)

我找到了简单的解决方案,如果有人问解决方案,那么使用webview是不必要的。

  String fullPath = "https://drive.google.com/open?id=1svKjgGhtS90u7n4D64ZcnzGxh9-X4kJx";
            Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(fullPath));
            startActivity(browserIntent);