我已经在 android 中实现了新的Chrome 自定义选项卡,我正在使用以下代码打开
String url = "http://www.flipkart.com/";
int color = Color.BLUE;
CustomTabsIntent.Builder intentBuilder = new CustomTabsIntent.Builder();
intentBuilder.setToolbarColor(color);
intentBuilder.setShowTitle(true);
CustomTabActivityHelper.openCustomTab(
this, intentBuilder.build(), Uri.parse(url), new WebviewFallback());
我需要保护我的 URL 或者不喜欢向用户显示我的 URL,但是在默认菜单中有一个选项在 Chrome 中打开,通过使用此链接用户可以在浏览器中打开我的 URL,如何隐藏默认菜单?