AppCompat Toolbar: Change Overflow Icon Color in ActionMode

前端 未结 12 754
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-31 03:12

With the AppCompat Toolbar, I want to be able to change the color of the overflow menu icon on ActionMode change.

For example, the overflow icon will be white in normal

12条回答
  •  北海茫月
    2021-01-31 03:54

    If you want the white overflow menu icon simply add android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" to your Toolbar layout code.

    If you want the dark overflow menu icon use android:theme="@style/Base.Widget.AppCompat.Light.PopupMenu"

    So final code is something like:

    
    

    Also, you should understand that it will change the color of the menu items also.

提交回复
热议问题