Styling is a place to improve my knowledge of the Android platform. Given that I’m trying to make simple changes all morning and couldn’t achieve this.
I want to change the style of the overflow menu in the action bar. I was able to change the background color and add animations so that when I click on it it disappears to the selected color. But for the life of me I can’t change the color of the text.
Below are two screenshots, one using Theme.Sherlock and the other using Theme.Sherlock.Light.
Theme.Sherlock . This is my current setup that I configured. I want the overflow (aka android: popupmenu) to be in a bare theme (as shown below) and perfect so that I can change the color of the text.

Theme.Sherlock.Light. , . , , , .

, . Theme.Sherlock.Light . "", , , , , , .
p.s. /, eclipse.
, , 2.3 .
<style name="AppTheme" parent="android:Theme.Holo.Light">
<item name="android:actionOverflowButtonStyle">@style/OverFlow</item>
</style>
<style name="OverFlow" parent="@android:style/Widget.Holo.ActionButton.Overflow">
<item name="android:src">**Insert your icon here**</item>
</style>