Android TabLayout设置字体大小的正确方式
1、在styles.xml中自定义TabLayoutTextStyle
<style name="TabLayoutTextStyle">
<item name="android:textSize">@dimen/tab_layout_text_size</item>
</style>
2、textSize不要直接写固定的xxsp,要采用引用dimen.xml资源的方式才能生效,dimen.xml中新增
<dimen name="tab_layout_text_size">14sp</dimen>
3在TabLyout中引用即可
<android.support.design.widget.TabLayout
...
app:tabTextAppearance="@style/TabLayoutTextStyle"
/>