Created
February 23, 2016 20:44
-
-
Save arriolac/e90f4d27698395e453c9 to your computer and use it in GitHub Desktop.
ActionBarDrawerToggle with no animation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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