Question Detail

How to change color of hamburger icon for Navigation drawer in Android

6 years ago Views 4428 Visit Post Reply

I am Using Default navigation drawer and my theme is white so my Drawer's Hamburger has a white color. So it's not showing properly. How can I change Hamburgur's Color in Android?


Image result for hamburger menu


Thread Reply

Correct Answer

Bili Greed

- 6 years ago

Remove your old main style 
and paste this

<!-- Base application theme. -->
<style name="AppTheme" parent="VBageTheme.Base">
</style>

<style name="VBageTheme.Base" 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>
    <item name="drawerArrowStyle">@style/DrawerVBage_ArrowStyle</item>
</style>

<style name="DrawerVBage_ArrowStyle" parent="@style/Widget.AppCompat.DrawerArrowToggle">
    <item name="spinBars">true</item>
    <item name="color">@android:color/blue</item>
</style>