Navigation drawer - disable swipe

前端 未结 1 1882
没有蜡笔的小新
没有蜡笔的小新 2020-12-04 13:55

Is there any way to disable swipe gesture to open navigation drawer? Its really annoying when menu appears while swiping between tabs.

相关标签:
1条回答
  • 2020-12-04 14:38

    You can use

    mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED);

    to lock your DrawerLayout so it won't be able to open with gestures. And unlock it with:

    mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED);

    Here you can find more info about DrawerLayout: Android API - DrawerLayout

    0 讨论(0)
提交回复
热议问题