AppBarLayout与RecyclerView重叠

时间:2016-07-26 22:49:29

标签: 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>

以下是内容的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>

3 个答案:

答案 0 :(得分:11)

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

    app:layout_behavior="@string/appbar_scrolling_view_behavior"

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

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

答案 1 :(得分:1)

看起来并不重叠。如果要在两者之间留有空格,只需从主xml中添加内容。此外,从内容xml中删除根相对布局的方向,因为它不起作用。

答案 2 :(得分:1)

我有同样的重叠问题,但原因是我有

<android.support.constraint.ConstraintLayout

作为我的根ViewGroup,而不是

<android.support.design.widget.CoordinatorLayout

所以也要检查一下:)