我正在尝试实现类似于Google+的用户界面,其中android活动将有两个滑出式抽屉,左侧是主要的,这是主菜单。右边的第二个,这是我的通知。但是,看看DrawerLayout我可以看到它不支持。知道Google+应用是如何实现的吗?
提前致谢
答案 0 :(得分:3)
我已经想出如何使用以下布局
来做到这一点<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- As the main content view, the view below consumes the entire
space available using match_parent in both dimensions. -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!-- android:layout_gravity="start" tells DrawerLayout to treat
this as a sliding drawer on the left side for left-to-right
languages and on the right side for right-to-left languages.
The drawer is given a fixed width in dp and extends the full height of
the container. A solid background is used for contrast
with the content view. -->
<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:background="#111"/>
<ListView
android:id="@+id/right_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="right"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:background="#111"/>
</android.support.v4.widget.DrawerLayout>
有趣的是文档没有提到这一点,当图书馆第一次出现时,如果存在两个以上的孩子,DrawerLayout会抛出异常。
答案 1 :(得分:0)
DrawerLayout在单个布局文件中支持2个抽屉。两者都应该为layout_gravity属性(“left”和“right”)获得不同的值。
示例摘录:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- Main content -->
</LinearLayout>
<FrameLayout
android:id="@+id/nav_left"
android:layout_width="@dimen/nav_left_width"
android:layout_height="match_parent"
android:layout_gravity="left">
<!-- Content of your left drawer -->
</FrameLayout>
<FrameLayout
android:id="@+id/nav_right"
android:layout_width="@dimen/nav_right_width"
android:layout_height="match_parent"
android:layout_gravity="right">
<!-- Content of your right drawer -->
</FrameLayout>
</android.support.v4.widget.DrawerLayout>