Android RecyclerView和DrawerLayout相互覆盖

时间:2015-07-15 04:34:40

标签: android xml

在我的xml文件中,我有一个recyclerView和一个导航抽屉布局。问题是,如果我将抽屉布局的代码放在RecyclerView的顶部,抽屉布局会显示,但RecyclerView会变为空白。

如果我反其道而行,则填充RecyclerView,但导航抽屉无处可寻。这是一个xml的东西吗?这是我的布局的xml代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="vertical">

<include
    layout="@layout/app_bar"
    android:id="@+id/app_bar" />


<android.support.v7.widget.RecyclerView
    android:id="@+id/routes_recycler_view"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

<android.support.v4.widget.DrawerLayout
    android:id="@+id/drawer_layout"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <fragment
        android:id="@+id/fragment_navigation_drawer"
        android:layout_width="@dimen/nav_drawer_width"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        app:layout="@layout/fragment_navigation_drawer"
        android:name="com.findthewayapp.fragments.NavigationDrawerFragment"
        tools:layout="@layout/fragment_navigation_drawer" />

</android.support.v4.widget.DrawerLayout>

</LinearLayout>

1 个答案:

答案 0 :(得分:5)

我们不使用线性布局导航抽屉我们可以使用抽屉布局
记住android.support.v4.widget.DrawerLayout只能有3个元素(按照这个顺序):

1.您的主要页面 2.左侧抽屉
3.Right Drawer

在fragment_navigation_drawer布局中使用recylerview

<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<!-- Main Layout -->
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:id="@+id/container_toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <include
            android:id="@+id/toolbar"
            layout="@layout/toolbar" />
    </LinearLayout>

    <FrameLayout
        android:id="@+id/container_body"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />
</LinearLayout>

<!-- Left Drawer -->
<fragment
    android:id="@+id/fragment_navigation_drawer"
    android:layout_width="@dimen/nav_drawer_width"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    app:layout="@layout/fragment_navigation_drawer"
    android:name="com.findthewayapp.fragments.NavigationDrawerFragment"
    tools:layout="@layout/fragment_navigation_drawer" /></android.support.v4.widget.DrawerLayout>