10

我有一个可用的 TabLayout,并且在更改选项卡时,我正在尝试动态更新选项卡文本颜色。为此,我setTabTextColors()在 TabLayout 上调用该方法,如下所示:

tabLayout.setOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
    @Override
    public void onTabSelected(TabLayout.Tab tab) {
        tabLayout.setTabTextColors(newColorStateList);
    }

    (...)
});

由于某种原因,文本颜色不会更新。有谁知道如何动态更新标签文本颜色?

我正在使用设计支持库 v22.2.0。

4

4 回答 4

7

TabLayout有这样的方法-

setTabTextColors(int normalColor, int selectedColor)

请记住,这int不是颜色资源值,而是int从十六进制解析的

前任:

tabLayout.setTabTextColors(Color.parseColor("#D3D3D3"),Color.parseColor("#2196f3"))
于 2019-04-14T18:00:42.420 回答
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);
        }

        (...)
    });
于 2015-07-10T14:54:08.237 回答
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();
            }
          }

        ...
        }
于 2015-07-20T11:05:47.840 回答
0

此外,请确保您不使用单独的 xml 文件来设置选项卡的样式。像我这样的东西(custom_tab.xml):

    TextView tabOne = (TextView) LayoutInflater.from(this).inflate(R.layout.custom_tab, null);
    tabOne.setText(R.string.tab_response);
    tabOne.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.tab_bar_icon_response, 0, 0);
    tabLayout.getTabAt(0).setCustomView(tabOne); 
于 2015-11-26T15:43:59.243 回答