Android - ActionBarSherlock - Set textcolor of text in menu
I want to change white color of text to orange. Here is a example. This can be done through setting some styles for your action bar. It is explained in this blog post http://android-developers.blogspot.com.au/2011/04/customizing-action-bar.html You need to set this in your style for you app. <style name="MyTheme" parent="android:style/Theme.Holo.Light"> <item name="android:dropDownListViewStyle">@style/MyDropDownListView</item> </style> Then you can specify this style with your own text color. <!-- style the items within the overflow menu --> <style name="MyDropDownListView" parent="android