gpt4 book ai didi

android - 在 TabLayout 中为选定和未选定的选项卡设置不同的 textAppearance

转载 作者:行者123 更新时间:2023-11-29 16:58:29 25 4
gpt4 key购买 nike

有谁知道如何在 TabsLayout 中为选定和未选定的选项卡设置不同的 textAppearancedocumentation只提到了一个千篇一律的 tabTextAppearance 属性,并且只允许通过 tabSelectedTextColor 为选定的选项卡设置不同的颜色。我的目标是在所选选项卡上使用不同的字体。

最佳答案

你应该在 OnTabSelectedListener 接口(interface)的 onTabSelected 中完成

tabLayout.addOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
@Override
public void onTabSelected(TabLayout.Tab tab) {
ViewGroup vg = (ViewGroup) tabLayout.getChildAt(0);
ViewGroup vgTab = (ViewGroup) vg.getChildAt(tab.getPosition());
int tabChildsCount = vgTab.getChildCount();
for (int i = 0; i < tabChildsCount; i++) {
View tabViewChild = vgTab.getChildAt(i);
if (tabViewChild instanceof TextView) {
((TextView) tabViewChild).setTypeFace(TYPE_FACE);
}
}
}

@Override
public void onTabUnselected(TabLayout.Tab tab) {
ViewGroup vg = (ViewGroup) tabLayout.getChildAt(0);
ViewGroup vgTab = (ViewGroup) vg.getChildAt(tab.getPosition());
int tabChildsCount = vgTab.getChildCount();
for (int i = 0; i < tabChildsCount; i++) {
View tabViewChild = vgTab.getChildAt(i);
if (tabViewChild instanceof TextView) {
((TextView) tabViewChild).setTypeFace(TYPE_FACE);
}
}
}
}

关于android - 在 TabLayout 中为选定和未选定的选项卡设置不同的 textAppearance,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43760985/

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