I am trying to change the title text color in an ActionBar, but I cannot get it to work
this is my style that I'm trying to use
<style name="TitleColorStyle" parent="android:TextAppearance.Holo.Widget.ActionBar.Title">
<item name="android:textColor">@android:color/white</item>
</style>
and in my application theme I use titleTextStyle
<style name="AppTheme" parent="android:Theme.Holo.Light">
<item name="android:windowContentOverlay">@null</item>
<item name="android:actionOverflowButtonStyle">@style/MyActionButtonOverflow</item>
<item name="android:actionDropDownStyle">@android:style/Widget.Holo.Spinner</item>
<item name="android:titleTextStyle">@style/TitleColorStyle</item>
</style>
I do not use the correct style to change color?
tyczj source
share