I am deriving my actionbar style from Holo.Light. But I want the overflow menu icon (the three dots) to be white instead of dark grey - so really I want to keep Theme.Holo.Light, but make the overflow icon use the Dark actionbar style.
This is my styles.xml file in my values-v14 folder:
# styles.xml
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
<item name="android:actionBarStyle">@style/MyTheme.ActionBarStyle</item>
</style>
<style name="MyTheme.ActionBarStyle" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:titleTextStyle">@style/MyTheme.ActionBar.TitleTextStyle</item>
<item name="android:background">@color/my_actionbar_background_color</item>
</style>
I'm stuck as the different posts related to this don't seem to compile for me
Thanks