When I click on my drawer toggle I get the following exception:
java.lang.IllegalArgumentException: No drawer view found with gravity LEFT
I solve this problem like this :
XML :
AND IN JAVA:
if (mDrawerLayout != null && mDrawerLayout.isDrawerOpen(GravityCompat.END)) { mDrawerLayout.closeDrawer(GravityCompat.END); }
I hope this helps someone!