How to change Toolbar Navigation and Overflow Menu icons (appcompat v7)?

后端 未结 11 1804
离开以前
离开以前 2020-11-29 19:11

I am having a hard time with v7 Toolbar. What was once a simple task for ActionBar, now seems overly complex. No matter what style I set, I cannot change either

11条回答
  •  囚心锁ツ
    2020-11-29 20:05

    To change color for options menu items you can

    override fun onCreateOptionsMenu(menu: Menu?): Boolean {
        menuInflater.inflate(R.menu.your_menu, menu)
    
        menu?.forEach {
            it.icon.setTint(Color.your_color)
        }
    
        return true
    }
    

提交回复
热议问题