disable the swipe gesture that opens the navigation drawer in android

后端 未结 6 1957
梦如初夏
梦如初夏 2020-12-02 06:40

I\'ve been following the navigation drawer guide by Google and I\'d like to add it to an Activity with tabs and gestures.

I\'d like to disable the gesture to open th

相关标签:
6条回答
  • 2020-12-02 06:59

    You should use:

    mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED);
    

    It worked for me, the swipe to open the drawer was disabled.

    If it still won't work, check out the answer provided here.

    0 讨论(0)
  • 2020-12-02 07:03

    This works for me

    mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED, {Your drawer view});
    
    0 讨论(0)
  • 2020-12-02 07:07

    Add gravity value too when using setDrawerLockMode();

    Do this :

    drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED, GravityCompat.END);
    

    This should work like a charm

    0 讨论(0)
  • 2020-12-02 07:11

    for locking you can do this:

    mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED);
    

    and for unlock :

    mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED);
    
    0 讨论(0)
  • 2020-12-02 07:11

    To disable swiping, override onInterceptTouchEvent and onTouchEvent on DrawerLayout and have them return false.

    0 讨论(0)
  • 2020-12-02 07:23

    The answer to disable swiping is the correct one. I think LOCK_MODE_LOCKED_CLOSED worked in Compat 24.x, but the functionality has been changed in newer compat libraries and LOCK_MODE_LOCKED_CLOSED now completely prevents the nav menu from showing, even via using the hamburger menu.

    The following class works for me (Kotlin):

    class MyDrawerLayout(ctx: Context) : DrawerLayout(ctx) {
      var isSwipeOpenEnabled: Boolean = true
    
      override fun onInterceptTouchEvent(ev: MotionEvent): Boolean {
          if (!isSwipeOpenEnabled && !isDrawerVisible(Gravity.START)) {
              return false
          }
          return super.onInterceptTouchEvent(ev)
      }
    
      @SuppressLint("ClickableViewAccessibility")
      override fun onTouchEvent(ev: MotionEvent): Boolean {
          if (!isSwipeOpenEnabled && !isDrawerVisible(Gravity.START)) {
              return false
          }
          return super.onTouchEvent(ev)
      }
    }
    
    0 讨论(0)
提交回复
热议问题