Android ActionBar MenuItem LowerCase

后端 未结 7 1302
孤独总比滥情好
孤独总比滥情好 2020-12-13 06:41

I want to make MenuItem title in the ActionBar to LowerCase.

my menu.xml

  

        
相关标签:
7条回答
  • 2020-12-13 07:18

    For making the menu text to lowercase like "MENU ITEM" to "Menu Item" here is my solution.

    In res >> values >> styles.xml add the following:

    <style name="MenuItemTextAppearance" parent="@style/TextAppearance.AppCompat.Widget.ActionBar.Menu">
        <item name="textAllCaps">false</item>
    </style>
    

    After you can call it on your AppTheme:

    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">...</item>
        <item name="colorPrimaryDark">...</item>
        <item name="colorAccent">...</item>
        <item name="actionMenuTextAppearance">@style/MenuItemTextAppearance</item>
    </style>
    

    I hope this helps. :)

    0 讨论(0)
提交回复
热议问题