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
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.