I need to change text color for items in Action Bar:
<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">#FFFFFF</item>
<item name="android:actionBarTabTextStyle">@style/CustomTabTextStyle</item>
<item name="android:textColor">#000000</item>
</style>
<style name="CustomTabTextStyle" parent="@android:style/TextAppearance.Holo">
<item name="android:actionMenuTextColor">#000000</item>
</style>
I can change background color, but text color I can't change. Please, how can I fix it?