TabLayout没有属性可以满足这个需求,所以只能给选中的tab定制TextView,
再根据监听TabLayout的选中状态设置该TextView的显示样式
第一步:xml文件 (单独一个布局)
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:textSize="16sp"
android:layout_gravity="center"
android:gravity="center"
android:textColor="#ff0000"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></TextView>
第二步:java代码
TabLayout mTabLayoiut = (TabLayout) get(R.id.tab_layout);
mTabLayoiut.addOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
@Override
public void onTabSelected(TabLayout.Tab tab) {
TextView textView = (TextView) LayoutInflater.from(getContext()).inflate(R.layout.tab_item_text,null);
textView.setTextSize(20);
textView.setText(tab.getText());
tab.setCustomView(textView);
}
@Override
public void onTabUnselected(TabLayout.Tab tab) {
tab.setCustomView(null);
}
@Override
public void onTabReselected(TabLayout.Tab tab) {
}
});
ok 这样就可以看效果啦~~