The application I\'ve been developing uses ActionBarSherlock, and the main theme inherits from Theme.Sherlock.Light.DarkActionBar. The design requires that the overflow menu pop
Giving it a chance: there is a text appearance called actionMenuTextAppearance
. Have you tried that?
Update: I did some more digging and I believe that this file is the layout And there they refer to textAppearanceListItemSmall
and textAppearanceSmall
. However, it takes this value from a special theme which is specified as following in Theme.Holo.Light
- @android:style/Theme.Holo.Light.CompactMenu
And like this in Theme.Holo
:
- @android:style/Theme.Holo.CompactMenu
The problems comes from the fact that the parent of Sherlock.__Theme.DarkActionBar
is Theme.Sherlock.Light
. This is not valid for the dark action bar. Taking the line from Theme.Holo
should do the trick.