com.google.android.material.tabs.TabLayout 选择tab 加粗字体加大
短信预约 -IT技能 免费直播动态提醒
引用: https://blog.csdn.net/qq_34906385/article/details/93524163
app:tabIndicatorColor :指示线的颜色
app:tabIndicatorHeight : 指示线的高度
app:tabIndicatorFullWidth="false" 指示线是否铺满宽度
app:tabSelectedTextColor : tab选中时的字体颜色
app:tabTextColor="@color/colorPrimary" :未选中字体颜色
app:tabBackground="color" : 整个tablayout颜色
app:tabMode="scrollable" : 默认是fixed,固定的;scrollable:可滚动的
//监听一定要在setupWithViewPager方法之前添加
binding.tablayout.setOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
@Override
public void onTabSelected(TabLayout.Tab tab) {
changeTabTextView(tab, true);
}
@Override
public void onTabUnselected(TabLayout.Tab tab) {
changeTabTextView(tab, false);
}
@Override
public void onTabReselected(TabLayout.Tab tab) {
}
});
// 选中第一个
changeTabTextView(binding.tablayout.getTabAt(0), true);
public void changeTabTextView(TabLayout.Tab tab, boolean isBold) {
View view = tab.getCustomView();
if (null == view) {
tab.setCustomView(R.layout.tab_layout_text);
}
TextView textView = tab.getCustomView().findViewById(android.R.id.text1);
if (isBold) {
textView.setTextAppearance(context, R.style.TabLayoutBoldTextSize);
} else {
textView.setTextAppearance(context, R.style.TabLayoutNormalTextSize);
}
}
17sp
bold
#fc5a44
15sp
normal
#24272E
作者:Liuyz0420
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341