AppBarLayout与RecyclerView重叠

Bro*_*wnT 1 android android-layout android-recyclerview android-appbarlayout

我一直在寻找解决这个问题的一段时间没有成功.我的AppBarLayout与我的一个xml文件中的RecyclerView重叠.我尝试重新排列视图而没有任何积极的结果.任何帮助表示赞赏.这是我的代码:

<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"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">

    <android.support.design.widget.CoordinatorLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        android:background="@color/bg_register">

        <android.support.design.widget.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:background="@color/toolbar"/>

        </android.support.design.widget.AppBarLayout>

        <include layout="@layout/content"
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
                 android:id="@+id/x"/>
    </android.support.design.widget.CoordinatorLayout>

    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        app:menu="@menu/activity_main_drawer"
        android:clickable="true"/>
</android.support.v4.widget.DrawerLayout>
Run Code Online (Sandbox Code Playgroud)

这是内容的xml文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:app="http://schemas.android.com/apk/res-auto"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                xmlns:tools="http://schemas.android.com/tools"
                app:layout_behavior="@string/appbar_scrolling_view_behavior"
                android:orientation="vertical"
                android:background="@color/bg_register"
                android:paddingLeft="10dp"
                android:paddingRight="10dp"
                tools:showIn="@layout/activity">

    <TextView
        android:padding="5dp"
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/list" />

    <android.support.v7.widget.RecyclerView
        android:layout_below="@id/textView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/lv_recycler"
        android:background="@color/white"
        android:scrollbars="vertical"
        android:clickable="true"
        android:fadeScrollbars="true"/>

</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)

kri*_*son 11

将此属性添加到工具栏下方的包含中:

    app:layout_behavior="@string/appbar_scrolling_view_behavior"
Run Code Online (Sandbox Code Playgroud)

当您使用CoordinatorLayout和时AppBarLayout,您正在设置协调滚动,工具栏首先将其推出.但为了实现这一点,您需要在工具栏下方的视图中提供appbar滚动视图行为.这不仅设置了协调滚动,而且告诉CoordinatorLayout布局下方视图,使其显示在工具栏下方.

如果您不希望协调工具栏滚动,请替换CoordinatorLayout为垂直LinearLayout.