gpt4 book ai didi

android - 如果用户在其设备中禁用了 Chrome 浏览器,则 Chrome 自定义选项卡会崩溃

转载 作者:太空宇宙 更新时间:2023-11-03 12:45:51 30 4
gpt4 key购买 nike

我正在尝试在 chrome 自定义选项卡 中打开 pdf 文件,使用此代码可以正常工作

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/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com