如何在Chrome自定义标签中更改标题颜色 [英] How to change a title color in Chrome Custom Tabs

查看:106
本文介绍了如何在Chrome自定义标签中更改标题颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有什么方法可以在Chrome自定义标签中更改标题颜色吗?

Is there any way to change a title color in Chrome Custom Tabs?

我应用了Chrome自定义标签来显示网页.为此,我利用了CustomTabsIntent.Builder类.但是,没有用于更改标题颜色的界面.

I applied Chrome custom tabs to show a web page. To do, I utilized CustomTabsIntent.Builder class. However, there is no interface to change a title color.

String url = "www.google.com";
CustomTabsIntent.Builder intentBuilder = new CustomTabsIntent.Builder();
intentBuilder.setToolbarColor(getResources().getColor(R.color.primary));
intentBuilder.setShowTitle(true);
intentBuilder.setCloseButtonIcon(BitmapFactory.decodeResource(getResources(), R.drawable.ic_arrow_back));
intentBuilder.setStartAnimations(getActivity(), R.anim.slide_in_right, R.anim.slide_out_left);
intentBuilder.setExitAnimations(getActivity(), android.R.anim.slide_in_left, android.R.anim.slide_out_right);
CustomTabActivityHelper.openCustomTab(getActivity(), intentBuilder.build(), Uri.parse(url), new WebviewFallback());

基于上述代码,Chrome自定义标签会显示黑色的标题文本.我想将标题更改为白色.

Based on the above code, Chrome Custom Tabs displays a black-colored title text. I want to change the title to a white color.

推荐答案

您无法在Chrome自定义标签中以编程方式更改标题的颜色.唯一可以遵循的方法是材料设计规范.

You can't change color of tittle programmatically in Chrome Custom Tab. The only way you can follow is Material Design Specifications.

如果应用的主色和主色为深色,则自定义标签"将使用深色标题,深色关闭按钮和深色溢出菜单按钮.

If you have primary and primaryDark color of your app with dark shade, than Custom Tabs will use dark tittle, dark close button and dark overflow menu button.

如果您具有浅色的主色和primaryDark颜色,则Chrome自定义标签将使用标题等.

If you have primary and primaryDark color with light shade, than Chrome Custom Tabs will use light tittle etc.

因此,您必须注意原色和primaryDark颜色的数量.

So, you must pay attention on number of you primary and primaryDark color.

这篇关于如何在Chrome自定义标签中更改标题颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆