我正在尝试在 pdf file 中打开 chrome custom tab ,使用此代码可以正常工作

CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
CustomTabsIntent customTabsIntent = builder.build();
customTabsIntent.launchUrl(this, Uri.parse("https://docs.google.com/viewerng/viewer?url=" +pdflink));

但问题是,如果用户从应用程序设置中禁用了 chrome,并且没有其他浏览器,它就会崩溃。那么如果它被禁用,我如何在 chrome 自定义选项卡中打开它。

提前致谢。

这是出现在 logcat 中的异常。
 Caused by: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=https://docs.google.com/... (has extras) }

最佳答案

试试这个:

CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
CustomTabsIntent customTabsIntent = builder.build();

try {
customTabsIntent.launchUrl(this, Uri.parse("https://docs.google.com/viewerng/viewer?url=" +pdflink));
}
catch (ActivityNotFoundException e)
{
    // display message to user
}

关于android - 如果用户在其设备中禁用了 Chrome 浏览器,Chrome 自定义选项卡会崩溃,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45561595/

10-12 00:07