0

I am using the following style to change the menu to lower case but it does not work. I've searched on the internet for references but I couldn't find anything.I think there is problem with the library.If anyone has an answer please tell me.

<!--
    Base application theme, dependent on API level. This theme is replaced
    by AppBaseTheme from res/values-vXX/styles.xml on newer devices.

-->
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
    <!--
        Theme customizations available in newer API levels can go in
        res/values-vXX/styles.xml, while customizations related to
        backward-compatibility can go here.

    -->

</style>

<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
    <item name="actionMenuTextAppearance">@style/MyMenuTextAppearance</item>
    <item name="android:actionMenuTextAppearance">@style/MyMenuTextAppearance</item>
</style>

<style name="MyMenuTextAppearance" parent="TextAppearance.AppCompat.Widget.ActionBar.Menu">
    <item name="android:textAllCaps">false</item>
</style>

Hans1984
  • 796
  • 11
  • 24
  • check this link http://stackoverflow.com/questions/17044790/android-actionbar-menuitem-lowercase – darwin Jul 13 '15 at 09:36
  • I already gone through above answer but its does not work for me – Jagdish Nimbalkar Jul 13 '15 at 10:08
  • try to add false in your AppBaseTheme theme below api level 21 and false in api level 21 and above. – darwin Jul 13 '15 at 10:20
  • Tried this allso but not working – Jagdish Nimbalkar Jul 13 '15 at 13:29
  • Vote for the bug report... https://code.google.com/p/android/issues/detail?id=185548 – Paul Nov 10 '15 at 20:42

0 Answers0