我正在使用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());