Androidに新しいChromeカスタムタブを実装しました。次のコードを使用して開いています
Uri uri = Uri.parse("https://akash.plobal.com/ploicy");
CustomTabsIntent.Builder intentBuilder = new CustomTabsIntent.Builder();
intentBuilder.setToolbarColor(Color.BLACK);
intentBuilder.setShowTitle(true);
intentBuilder.build().launchUrl(getActivity(), uri);
ツールバーのタイトルの下に URL を非表示にする必要があります