Action Bar menu item text color
android, android-actionbar, android-menu, android-styles
Solution
Try something like this :
<style name="ThemeName" parent="@style/Theme.Sherlock.Light">
<item name="actionMenuTextColor">@color/white</item>
<item name="android:actionMenuTextColor">@color/white</item>
</style>
Problem
How to change text color of menu item title. I tried to change it as below ``` <style name="Theme.Kanku.ActionBar.TitleTextStyle" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Title"> <item name="android:textColor">@color/white</item> </style> ``` But it change color only of Action Bar title text, but not menu item text.