1

我正在尝试实现一个类似于 Google+ 的 UI,其中 android 活动将有两个滑出式抽屉,左侧是主抽屉,这是主菜单。右边的第二个,那是我的通知。但是,查看 DrawerLayout 我可以看到它不支持。知道 Google+ 应用程序是如何实现它的吗?

提前致谢

4

2 回答 2

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 会抛出异常。

于 2013-09-24T22:33:16.290 回答
0

DrawerLayout 在单个布局文件中支持 2 个抽屉。两者都应该为其 layout_gravity 属性(“左”和“右”)获得不同的值。

示例片段:

<?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>

于 2013-09-23T06:20:51.357 回答