Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用来自 Google 的新 Navigatino 抽屉,我正在尝试在内部使用某种切换按钮,但每次单击其中一个按钮时,我都无法避免菜单关闭。
有什么办法可以避免每次点击都会关闭导航抽屉?
谢谢!
您可以通过以下方式将抽屉锁定在打开状态:
drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_OPEN);
并关闭和解锁:
drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED); drawerLayout.closeDrawer(drawerView);
此外,抽屉的行为不应像您描述的那样,请在此处编辑您的帖子并粘贴代码 + xml。
链接到文档