Created
March 8, 2017 09:59
-
-
Save YvesBill/d689830e1d4ae03cf088c6b945ef3095 to your computer and use it in GitHub Desktop.
Style for TabLayout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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