Skip to content

Instantly share code, notes, and snippets.

@arriolac
Created February 23, 2016 20:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arriolac/e90f4d27698395e453c9 to your computer and use it in GitHub Desktop.
Save arriolac/e90f4d27698395e453c9 to your computer and use it in GitHub Desktop.
ActionBarDrawerToggle with no animation
new ActionBarDrawerToggle(this, drawerLayout, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close) {
@Override public void onDrawerSlide(View drawerView, float slideOffset) {
super.onDrawerSlide(drawerView, 0);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment