Akash Doshi
Akash Doshi

Reputation: 421

How to hide url in Chrome custom tab android

I have implemented new Chrome Custom Tab in android, I am using the following code to open

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);

I need to hide url below the title in toolbar

enter image description here

Upvotes: 27

Views: 17459

Answers (3)

andreban
andreban

Reputation: 4976

If you control both the content and the application, you can use Trusted Web Activities to completely remove the URL bar. You'll need to implement Digital Asset Links to validate the ownership of both.

If you don't own the content, it is not possible to hide the URL below the title. The URLs needs to visible to the user, so that they can know in which site they are. By removing this from the UI, a malicious site could mimic the UI of another one, and this could potentially create a security issue for users.

Upvotes: 28

devgun
devgun

Reputation: 1005

You cannot hide the url alone. You can only get rid of the whole title bar, that too when the user scroll the view. To achieve this,use

intentBuilder.enableUrlBarHiding();

Upvotes: -4

Prashant Jajal
Prashant Jajal

Reputation: 3627

You can try setShowTitle(false) of your custom tab.

Upvotes: -7

Related Questions