I am trying to do SSO using Chrome Tabs in my Android Application.
Whenever the chrome comes in it also has options menu of chrome - Is there a way to disable this options menu.
I am trying to do SSO using Chrome Tabs in my Android Application.
Whenever the chrome comes in it also has options menu of chrome - Is there a way to disable this options menu.
In cases like this you should use phonegap
instead of use chrome browser as webview read the docs
basically it runs chrome webview on android
, and safari webview on IOS
but without all chrome/safari options
.
Simply use a WebView
instead of CustomTabs
- then there is nothing to hide away, to begin with.
Hey there so in my opinion you should use simple Android webview
if you don't want your user to access these options.
Just create a new activity/fragment that contains webview
and open your website or any url within it.
This might help you from android developer docs.
Also try this example that might be useful.