我有一个带两个抽屉的 DrawerLayout,一个在左侧,一个在右侧。
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
xmlns:app="http://schemas.android.com/apk/res-auto">
<fragment
android:id="@+id/mainFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<fragment
android:id="@+id/leftFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="left|start"/>
<fragment
android:id="@+id/rightFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="right|end"/>
</android.support.v4.widget.DrawerLayout>
问题是有时当我向左滑动关闭左侧抽屉时,它也会打开右侧抽屉。
有什么办法可以防止这种情况发生吗?我在想也许我可以阻止对方打开,直到双方都关闭至少 X 毫秒或其他时间,但我不知道该怎么做。