I implemented a new special Chrome Custom tab in android, I use the following code to open
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());
I need to protect my URL or not show the user's URL, but the default menu has the Open in Chrome option. Using this link, the user can open my URL in the browser. How to hide the default menu?

source share