trying to change actionbar text color of this item in the action bar. here is the item
<item android:id="@+id/options_button"
android:title="@string/options"
android:showAsAction="ifRoom|withText"/>
and here is my styles.xml
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="MyCustomTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/MyActionBarTheme</item>
<item name="android:background">@color/White</item>
<item name="android:textColor">@color/Red</item>
</style>
<style name="MyActionBarTheme" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">@color/White</item>
<item name="android:textColor">@color/Red</item>
</style>
</resources>
i saw other posts on here about this but after trying their solutions nothing worked for me? is it something to do with how i made the theme? All i really wanted was my action bar to be white, not display the title, and display a button that says options. I have all of that, but the options I want to be a red color im working with rather than black.
dont think people understand...
I know of the way to change the title (I dont have a title and i dont want one).I want to change the color of the item that is displaying itself in the actionbar...