I have created clean app with fixed tabs and imported AppCompat, how to change active tab bottom border color and change clicked tab background?
This is what I want:
I have created clean app with fixed tabs and imported AppCompat, how to change active tab bottom border color and change clicked tab background?
This is what I want:
Have a look at this Action Bar Style Generator http://jgilfelt.github.io/android-actionbarstylegenerator/
You have to make custom theme with required colors you can go following link to make a custom theme easily and download it
In your theme add this
<item name="TabPageStyle">@style/CustomTabPage</item>
and in your style add this ,the footer color is your tab under color
<style name="CustomTitlePage">
<item name="android:background">#18FF0000</item>
<item name="footerColor">#00FFCC</item>
<item name="footerLineHeight">1dp</item>
<item name="footerIndicatorHeight">3dp</item>
<item name="footerIndicatorStyle">underline</item>
<item name="android:textColor">#00FF04</item>
</style>