hello i am using AppCompat v7
for Navigation drawer. i required to change hamburger menu icon with no animation.
i gone through style of DrawerArrowToggle
and found this
<style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="">
<item name="color">?android:attr/textColorSecondary</item>
<item name="thickness">2dp</item>
<item name="barSize">18dp</item>
<item name="gapBetweenBars">3dp</item>
<item name="topBottomBarArrowSize">11.31dp</item>
<item name="middleBarArrowSize">16dp</item>
<item name="drawableSize">24dp</item>
<item name="spinBars">true</item>
</style>
and there is no drawable attribute to set custom icon. so is there way to change icon?
i know we can disable drawerToggle
and set custom image in toolbar and maintain open and close state.