You redefined the theme and set your own style for the action bar menu items.
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="YourTheme" parent="android:Theme.Holo">
<item name="android:actionMenuTextAppearance">@style/LowerCaseMenuTextAppearance</item>
</style>
<style name="LowerCaseMenuTextAppearance" parent="android:TextAppearance.Holo.Widget.ActionBar.Menu">
<item name="android:textAllCaps">false</item>
</style>
</resources>
source
share