我有一个应用程序,我想实现一个双抽屉- 一个从左边,一个从右边。 左抽屉用于应用导航,右侧抽屉用于结果过滤。
因此,布局是这样的:<?xml version="1.0" encoding="utf-8"?>
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/light_grey"
android:orientation="vertical">
android:id="@+id/gridview"
style="@style/GridViewStyle"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:horizontalSpacing="7dp"
android:stretchMode="columnWidth"
android:verticalSpacing="7dp"/>
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#111"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"/>
android:id="@+id/right_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="end"
android:background="#111"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"/>
你可以清楚地看到"left_drawer"和"right_drawer",它们各自的重力-"开始"和"结尾",这实际上可以 ! 你可以把它们都拉出来。
但是我现在只打开左抽屉,没有关闭右边的抽屉,所以如果右边的抽屉打开了,那么右边的抽屉就打开了,右边的抽屉也打开了,右边的抽屉也是。
我正在尝试获得的解决方案有几个:在右侧设置相同的DrawerToggle按钮,与左侧的行为和动画相同。
在我试图打开的抽屉对面的抽屉里,自动关闭( 如果左抽屉打开,我按右抽屉的开关,反之亦然) 。
我还没有这么做,因为DrawerToggle接受DrawerLayout本身作为参数,而不是个别抽屉。"。
我正在使用支持库。
谁有什么想法谢谢你。