disable the swipe gesture that opens the navigation drawer in android

后端 未结 6 1985
梦如初夏
梦如初夏 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 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

提交回复
热议问题