3
To change the color of the burger icon you should open the file xml style.
And then in this class, add the line responsible for the color:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
/*linha responsável pela cor abaixo*/
<item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
/*linha responsável pela cor acima*/
</style>
<style name="DrawerArrowStyle" parent="@style/Widget.AppCompat.DrawerArrowToggle">
<item name="spinBars">true</item>
<item name="color">@android:color/black</item>
</style>
Then just change the color on the line <item name="color">@android:color/black</item>
Responding to Woton Sampaio:
The scheme is the same, but to change the color of the 3 dots, you must add the following line:
<item name="android:textColorSecondary">@color/white</item>
Any questions with the implementation let us know.
Hugs
Dude, I’m not the owner of the n kkkk question, but you know how to change the 3 dots on the menu too?
– Woton Sampaio
If you could put it next to your answer, thank you
– Woton Sampaio
I already left my +1
– Woton Sampaio
Woton Sampaio, I made an edit in my reply with the change you need to change the color of the 3 dots
– Leonardo Dias
Thank you very much, vlw
– Woton Sampaio
Solved! Thank you
– Luis Felipe