1

Custom Tabs起動に使用していweb viewます。

問題は、無効にすると、ボタンが含まれていないアクティビティでchrome開くことです。URL

Web BrowserChrome がユーザー デバイスにインストールされていない場合は を起動し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());
4

1 に答える 1