Skip to content

Instantly share code, notes, and snippets.

@AKiniyalocts
Created September 30, 2015 00:33
Show Gist options
  • Save AKiniyalocts/abcdf51556324be61711 to your computer and use it in GitHub Desktop.
Save AKiniyalocts/abcdf51556324be61711 to your computer and use it in GitHub Desktop.
How to style an ActionBarDrawerToggle
<style name="MyTheme" parent="Theme.AppCompat">
<item name="drawerArrowStyle">@style/MyDrawerArrowToggle</item>
</style>
<style name="MyDrawerArrowToggle" parent="Widget.AppCompat.DrawerArrowToggle">
<item name="color">?android:attr/textColorSecondary</item>
<item name="middleBarArrowSize">16dp</item>
<item name="spinBars">true</item>
<item name="thickness">2dp</item>
<item name="topBottomBarArrowSize">11.31dp</item>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment