有没有办法禁用滑动手势打开导航抽屉?当菜单在选项卡之间滑动的时候出现真的很烦人。
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:
DrawerLayout
mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED);
Here you can find more info about DrawerLayout: Android API - DrawerLayout