1//Add this style
2 <style name="DrawerHamburgerStyle" parent="@style/Widget.AppCompat.DrawerArrowToggle">
3 <item name="spinBars">true</item>
4 <item name="color">@android:color/white</item>
5 </style>
6
7//Then add the style to the theme
8 <item name="drawerArrowStyle">@style/DrawerHamburgerStyle</item>
9