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
ActionBar
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 }