gpt4 book ai didi

android - 如何更改选定的选项卡标题颜色

转载 作者:行者123 更新时间:2023-11-30 02:17:22 24 4
gpt4 key购买 nike

我需要在我的选项卡 Activity 中更改选定的选项卡颜色

例如,选中的项目文本颜色必须是#cea939,未选中的项目颜色必须是#d7ba60。我应该怎么做才能改变它?实际上,我尝试将 textColor 值添加到 apptheme_tab_indicator.xml - 但没有结果。顺便说一下,我使用 AppCompat。如果有解决方案,stylesstyles-v21 有何不同?

最佳答案

您可以查看我对帖子 How to change Viewpager tab colour dynamically? 的回答, 使用tabs的自定义 View ,将背景颜色设置代码更改为文本颜色设置:

Tab selectedTab = yourActionBar.getSelectedTab();
View tabView = selectedTab.getCustomView();
TextView text = (TextView)tabView.findViewById(R.id.your_text_id);
text.setColor(your_text_color);

希望对您有所帮助!

关于android - 如何更改选定的选项卡标题颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29081274/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com