Skip to content

Instantly share code, notes, and snippets.

@trunghq3101
Created October 16, 2019 02:07
Show Gist options
  • Select an option

  • Save trunghq3101/ed4d136243a677e81bf7f6a68799fdf5 to your computer and use it in GitHub Desktop.

Select an option

Save trunghq3101/ed4d136243a677e81bf7f6a68799fdf5 to your computer and use it in GitHub Desktop.
Custom drawer arrow style (Up arrow)
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="drawerArrowStyle">@style/AppTheme.DrawerArrowStyle</item>
<item name="android:textSize">14sp</item>
</style>
<style name="AppTheme.DrawerArrowStyle" parent="Widget.AppCompat.DrawerArrowToggle">
<item name="color">@color/colorPrimary</item>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment