本文介绍了导航抽屉 - 禁用刷卡的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有什么办法来禁用滑动手势来打开抽屉式导航?而标签之间刷卡它真的很烦人,当菜单出现。

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

推荐答案

您可以使用

mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED);

要锁定 DrawerLayout 所以它不能用手势开启。而随着解锁:

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

mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED);

在这里你可以找到 DrawerLayout 的详细信息:的

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

这篇关于导航抽屉 - 禁用刷卡的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-07 03:58