1. 程式人生 > >Android TabLayout設定字型大小的正確方式

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"
 />