Skip to content

Instantly share code, notes, and snippets.

@YvesBill
Created March 8, 2017 09:59
Show Gist options
  • Save YvesBill/d689830e1d4ae03cf088c6b945ef3095 to your computer and use it in GitHub Desktop.
Save YvesBill/d689830e1d4ae03cf088c6b945ef3095 to your computer and use it in GitHub Desktop.
Style for TabLayout
<style name="TabLayout" parent="Widget.Design.TabLayout">
<item name="tabTextAppearance">@style/MyCustomTabText</item>
<item name="tabSelectedTextColor">#fff</item>
</style>
<style name="MyCustomTabText" parent="TextAppearance.AppCompat.Button">
<item name="android:textSize">14sp</item>
<item name="android:textColor">@android:color/darker_gray</item>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment