AppCompat Toolbar: Change Overflow Icon Color in ActionMode

前端 未结 12 762
佛祖请我去吃肉
佛祖请我去吃肉 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:57

    If you are using the toolbar in your activity xml you can use something like this

    toolbar?.navigationIcon?.setColorFilter(ContextCompat.getColor(this, android.R.color.black), PorterDuff.Mode.SRC_ATOP)
    

提交回复
热议问题