i cant find how to change my actionbar overflow text color... i'm able to set the title text color but not the overflow text color
themes.xml
<resources>
<style name="MyAppTheme" parent="@android:style/Theme.Holo">
<item name="android:actionBarStyle">@style/MyAppTheme.ActionBarStyle</item>
</style>
<style name="MyAppTheme.ActionBarStyle" parent="@android:style/Widget.Holo.ActionBar">
<item name="android:background">@color/blue</item>
<item name="android:titleTextStyle">@style/MyAppTheme.ActionBar.TitleTextStyle</item>
<item name="android:displayOptions">showTitle</item>
</style>
<style name="MyAppTheme.ActionBar.TitleTextStyle" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Title">
<item name="android:textColor">@color/white</item>
</style>
</resources>
thx