如何打开 url as Intent.ACTION_VIEW use only Google Drive?

How to open the url as Intent.ACTION_VIEW use only Google Drive?

我正在申请下载韩国流行信使的主题。这个应用程序显然需要服务器来保存主题文件。我选择服务器作为 Google 驱动器,因为它的服务是免费且无限制的。当用户点击下载按钮时,App 从 Google Drive public link 下载主题。 URL 以 Google Drive 应用程序打开没有问题。但它打开 URL 三星互联网浏览器如上图所示。 Google Drive Code example like this 句子, Like this drive.google.com/file/d/FileCode/view?usp=sharing.

我希望用户仅使用 GOOGLE 驱动器打开 URL。

public void setThemeDownloadButton(final Context context, final String url) {
    themeBottomDownload.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View view) {
            context.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
        }
    });
}

为特定应用设置包

intent.setPackage("com.google.android.apps.docs");