关闭打开的抽屉式导航在Android上的滑动手势手势、抽屉式、Android

2023-09-04 08:17:11 作者:终究过了期

我一直在关注由谷歌导航抽屉导轨,我想喜欢将其添加到有标签和手势的活动。

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 the navigation drawer, does anyone have any idea how to do this?

推荐答案

您应该使用:

mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED);

这和我一起工作,打开抽屉的滑动被禁用。

It work with me, The swipe to open the drawer was disabled.