androidandroid-navigation

How to detect if navigation drawer is open?


The title explains it all. All what I want to do is to know if the navigation drawer is open or not. I searched a lot on the net and found the method isDrawerOpen(int drawerGravity)but couldn't find a satisfactory answer which explains how to use it in a method. I would appreciate if anyone explains it to me.


Solution

  • Assuming you have defined a drawerlayout in xml:

    DrawerLayout mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
    ...
    if(mDrawerLayout.isDrawerOpen(GravityCompat.START)) {
      //drawer is open
    }