如何检查用户设备上是否未启用Chrome

时间:2018-09-17 19:38:13

标签: android performance android-layout android-webview android-customtabs

我正在使用Custom Tabs启动web view

问题在于,如果我禁用chrome,则会在活动中打开URL,该活动中没有任何按钮。

如果您的用户设备上未安装chrome,我想启动Web Browser,如果其中存在chrome,我想启动custom tab

这是我启动Custom Tabs

的代码
        CustomTabsIntent customTabsIntent = new CustomTabsIntent.Builder()
                .addDefaultShareMenuItem()
                .setShowTitle(true)
                .build();

// This is optional but recommended
        CustomTabsHelper.addKeepAliveExtra(eContext, customTabsIntent.intent);

// This is where the magic happens...
        CustomTabsHelper.openCustomTab(eContext, customTabsIntent,
                Uri.parse(url),
                new WebViewFallback());

0 个答案:

没有答案