How can I change the color of bar-shadow, title text and progress bar like in the Android app for Twitter(https://i.stack.imgur.com/SJT3v.jpg) or Telegram (https://i.stack.imgur.com/8O20D.jpg)?
This is my app(https://i.stack.imgur.com/5AOpq.jpg)
I can't add tag meta to html. How can I do it without using a tag?
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
builder.setToolbarColor(ResourcesCompat.getColor(getResources(), R.color.blue, null));
builder.enableUrlBarHiding();
CustomTabsIntent customTabsIntent = builder.build();
customTabsIntent.launchUrl(this, Uri.parse(url));