This is a follow up question to this question:
ActionBar AppCompat change Tab indicator color
I'm using the support action bar and adding tabs to it. I want to change the indicator color. What I've tried doing is this:
<style name="CustomActivityTheme" parent="@style/Theme.AppCompat.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/MyActionBar</item>
<!-- Support library compatibility -->
<item name="actionBarStyle">@style/MyActionBar</item>
<item name="android:actionBarTabStyle">@style/MyActionBarTabViewStyle</item>
<item name="actionBarTabStyle">@style/MyActionBarTabViewStyle</item>
</style>
<style name="MyActionBarTabViewStyle" parent="@android:style/Widget.Holo.Light.ActionBar.TabView">
<item name="android:background">@color/White</item>
</style>
This changes the entire tab's color, but I want to change the indicator's color only. What am I doing wrong here?