Custom Tabs
起動に使用していweb view
ます。
問題は、無効にすると、ボタンが含まれていないアクティビティでchrome
開くことです。URL
Web Browser
Chrome がユーザー デバイスにインストールされていない場合は を起動しcustom tab
、Chrome が存在する場合は を起動します。
これは起動する私のコードです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());