The correct answer is to overload the style of the action bar widget using your own style. For a head light with a dark action bar, put this in your own stylesheet, for example res/values/styles_mytheme.xml
:
<style name="Theme.MyTheme" parent="@android:style/Theme.Holo.Light.DarkActionBar"> <item name="android:actionBarWidgetTheme">@style/Theme.MyTheme.Widget</item> </style> <style name="Theme.MyTheme.Widget" parent="@android:style/Theme.Holo"> <item name="android:textColorHint">@android:color/white</item> </style>
Make sure your application uses the theme theme as described in the enter link here
source share