How to change toolbar menu item text color for pre Lollipop and Lollipop versions

前端 未结 1 385
时光取名叫无心
时光取名叫无心 2021-01-14 20:06

I am using Toolbar for the purpose of material design in my application. Everything working fine but except when it comes to change the menu item text color I am completely

相关标签:
1条回答
  • 2021-01-14 20:43

    Change this

    <item name="android:actionMenuTextColor">@color/white</item>
    

    to

    <item name="actionMenuTextColor">@color/white</item>
    

    And apply the theme to the toolbar:

    android:theme="@style/ToolBarTheme"
    

    You style your widgets and provide themes for your activity.

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