I am trying to change the text color of an ActionBarSupport header. I used ActionBarStyleGenererator to create a theme with the right colors, and it works well.
When using a light theme, I would like to change the title color to white (in the generator I canโt set the color of the text (for a number of reasons I canโt use the dark theme in action). Iโm so close, I just need to get the name to white ;-)
What am I doing wrong here?
<style name="ActionBar.Transparent.MyApp" parent="@style/Widget.AppCompat.Light.ActionBar"> <item name="background">@drawable/ab_transparent_myapp</item> <item name="progressBarStyle">@style/ProgressBar.MyApp</item> <item name="titleTextStyle">@style/MyApp.TitleTextStyle</item> </style> <style name="MyApp.TitleTextStyle" parent="@style/TextAppearance.AppCompat.Widget.Base.ActionBar.Title"> <item name="android:textColor">#ffffff</item> </style>
source share