We can use the Chrome custom tabs as this library mention by doing this
appAuthConfigBuilder.setBrowserMatcher(new BrowserWhitelist(VersionedBrowserMatcher.CHROME_CUSTOM_TAB));
How can i cutomize the color and set a title of the toolbar ?
customTabsIntent.Builder builder = new CustomTabsIntent.Builder();
builder.setToolbarColor(
ContextCompat.getColor(SplashScreenActivity.this,R.color.colorPrimary));
builder.setShowTitle(true);
builder.addDefaultShareMenuItem();
builder.enableUrlBarHiding();
authService.performAuthorizationRequest(
authRequest,
pendingIntent,
builder.build());
Most helpful comment