前言
TabLayout对于我们来说并不陌生,大部分项目都会使TabLayout+Viewpager+Fragment展示首页列表内容,一般情况下,只会设置选中时tab颜色改变,并不会设置字体大小的改变,这些从TabLayout的属性亦可知。通常情况下,如果需要改变选中tab的字体大小,一般都是去引用第三方库去实现这种效果,但是又觉得这种做法得不偿失。通过阅读TabLayout源码可知,可以设置自定义tab来实现选中字体大小变大效果,因此本篇主要是通过自定义tabview来实现选中字体大小问题。
分析
- 当选中状态时,TabLayout回调接口会回调Tab对象,此时设置自定义view即可
- 默认未选中状态下,tab可自定义view,亦可使用默认状态的,本文采用默认状态下的tab
自定义Tab
通过阅读TabLayout源码,TabLayout是通过继承HorizontalScrollView实现滑动tab的效果,监听ViewPager的滑动,操作其内部类TabLayout.Tab实现切换tab。其内部操作内部类Tab,包含TabView,TabView继承LinearLayout,内包含两个控件,Imageview和TextView,主要是TextView设置Tabname。通过分析因此我们可以通过自定义Textview或者LinearLayout来实现改变字体大小。通过前面分析,监听tab切换选中状态回调:
选中状态
@Override
public void onTabSelected(TabLayout.Tab tab) {
TextView textView = new TextView(getActivity());
float selectedSize = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_PX, 16, getResources().getDisplayMetrics());
textView.setTextSize(TypedValue.COMPLEX_UNIT_SP,selectedSize);
textView.setTextColor(getResources().getColor(R.color.color_eb1e03));
textView.setText(tab.getText());
tab.setCustomView(textView);
}
说明:1、TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_PX, 16, getResources().getDisplayMetrics()) 这个方法是格式转换,因为最后要转换为sp格式(想要的是16sp)
2、textView.setTextSize(TypedValue.COMPLEX_UNIT_SP,selectedSize)这个方法是设置字体格式为sp格式,目的是与普通未选中的tab格式一致
未选中状态
未选中状态处理有两种方式,第一种是同选中状态一样设置,第二种方式是通过设置默认样式,并且设置自定义view为空实现。本文选用第二种方式实现。
@Override
public void onTabUnselected(TabLayout.Tab tab) {
tab.setCustomView(null);
}
<style name="TabText">
<item name="android:textSize">14sp</item>
<item name="android:textColor">@color/color_3a3a3a</item>
</style>
<android.support.design.widget.TabLayout
android:id="@+id/tl_channel"
android:layout_width="0dp"
android:layout_height="48dp"
android:layout_weight="1"
app:tabBackground="@color/white"
app:tabIndicatorHeight="0dp"
app:tabMode="scrollable"
app:tabTextAppearance="@style/TabText" />
默认选中Tab
完成上述步骤,只有当点击tab切换的时候才会实现选中的tab文字字体稍大和变色,但是我们是通过监听tab切换来实现字体改变效果的,因此默认选中的tab并不会改变。因此需要单独处理,首先取到默认选中的tab,然后再通过设置该tab的自定义view即可。
/**
* Returns the tab at the specified index.
*/
@Nullable
public Tab getTabAt(int index) {
return (index < 0 || index >= getTabCount()) ? null : mTabs.get(index);
}
/**
* Returns the position of the current selected tab.
*
* @return selected tab position, or {@code -1} if there isn't a selected tab.
*/
public int getSelectedTabPosition() {
return mSelectedTab != null ? mSelectedTab.getPosition() : -1;
}
mTabLayout.getTabAt(0)
说明:上面两个方法是源码中的方法,如果已经确定默认选中某个tab的情况下使用第一个方法即可,如果未知的情况下,通过第二个方法获取选中的tab然后再去调用第一个方法。
第二种实现
第一种:初始化
在初始化tablayout之后,通过遍历的方式添加tabview
for (int i = 0; i < tabNames.length; i++) {
addTabView(i,0);
}
/**
* 添加tabview
*
* @param index 添加的下标
* @param selectedIndex 默认选中的位置
*/
private void addTabView(int index, int selectedIndex) {
TabLayout.Tab tab = tabLayout.getTabAt(index);
TextView textView = new TextView(this);
textView.setText(tabNames[index]);
textView.setGravity(Gravity.CENTER);
tab.setCustomView(textView);
if (index == selectedIndex) {//默认选中0
onTabSelected(tab);
} else {
onTabUnselected(tab);
}
}
第二步:设置选中和未选中的状态
@Override
public void onTabSelected(TabLayout.Tab tab) {
TextView textView = (TextView) tab.getCustomView();
float selectedSize = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_PX, 16, getResources().getDisplayMetrics());
textView.setTextSize(TypedValue.COMPLEX_UNIT_SP, selectedSize);
textView.setTextColor(Color.BLACK);
textView.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));
tabLayout.setTabIndicatorFullWidth(false);
}
@Override
public void onTabUnselected(TabLayout.Tab tab) {
TextView textView = (TextView) tab.getCustomView();
float selectedSize = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_PX, 14, getResources().getDisplayMetrics());
textView.setTextSize(TypedValue.COMPLEX_UNIT_SP, selectedSize);
textView.setTypeface(Typeface.defaultFromStyle(Typeface.NORMAL));
textView.setTextColor(getResources().getColor(R.color.color_212121));
tabLayout.setTabIndicatorFullWidth(false);
}