Possible Duplicate:
ActionBar text color
I have a plain actionbar for a v14 project. The style is defined like this:
<style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">#f00</item>
<item name="android:textColor">#fff</item>
</style>
The background color is red, which is great, but the text remains black. I want it to be white. How do I get it to cooperate?
Also, is there a listing of all the xml attributes you can you with an ActionBar? The ActionBar doc does not seem to list them, unless I'm missing them:
http://developer.android.com/reference/android/app/ActionBar.html
that would be very helpful,
Thanks