我有一个工作的TabLayout,我正在尝试在更改标签时动态更新标签文本颜色。为此,我在我的TabLayout上调用setTabTextColors()
方法:
tabLayout.setOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
@Override
public void onTabSelected(TabLayout.Tab tab) {
tabLayout.setTabTextColors(newColorStateList);
}
(...)
});
由于某种原因,文字颜色不会更新。有谁知道如何动态更新标签文本颜色?
我正在使用Design Support Library v22.2.0。
答案 0 :(得分:4)
经过一番调查后,似乎TabLayout中的文本视图在创建后没有更新颜色。
我想出的解决方案是浏览TabLayout的子视图并直接更新颜色。
public static void setChildTextViewsColor(ViewGroup viewGroup, ColorStateList colorStateList) {
for (int i = 0; i < viewGroup.getChildCount(); i++) {
View child = viewGroup.getChildAt(i);
if (child instanceof ViewGroup) {
setChildTextViewsColor((ViewGroup) child, colorStateList);
} else if (child instanceof TextView) {
TextView textView = (TextView) child;
textView.setTextColor(colorStateList);
}
}
}
然后,在OnTabSelectedListener中:
tabLayout.setOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
@Override
public void onTabSelected(TabLayout.Tab tab) {
setChildTextViewsColor(tabLayout, newColorStateList);
}
(...)
});
答案 1 :(得分:4)
最终修复了设计支持库22.2.1。
tabLayout.setOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
@Override
public void onTabSelected(TabLayout.Tab tab) {
tabLayout.setTabTextColors(getResources().getColor(R.color.normal), getResources().getColor(R.color.selected));
try {
// FIXME: 20.7.2015 WORKAROUND: https://code.google.com/p/android/issues/detail?id=175182 change indicator color
Field field = TabLayout.class.getDeclaredField("mTabStrip");
field.setAccessible(true);
Object value = field.get(tabLayout);
Method method = value.getClass().getDeclaredMethod("setSelectedIndicatorColor", Integer.TYPE);
method.setAccessible(true);
method.invoke(value, getResources().getColor(R.color.selected));
} catch (Exception e) {
e.printStackTrace();
}
}
...
}
答案 2 :(得分:1)
TabLayout
具有这样的方法-
setTabTextColors(int normalColor, int selectedColor)
请记住,int
不是颜色资源值,而是int
是从十六进制解析的
例如:
tabLayout.setTabTextColors(Color.parseColor("#D3D3D3"),Color.parseColor("#2196f3"))
答案 3 :(得分:0)
另外,请确保不要使用单独的xml文件来设置选项卡样式。像这样的东西,就像我有(custom_tab.xml):
std::unique_ptr