Recyclerview在AppBarLayout内部不可见

时间:2019-05-06 09:21:53

标签: android android-recyclerview android-coordinatorlayout android-appbarlayout

我已经将RecyclerView放在CoordinatorLayout-> AppBarLayout-> RecyclerView中,并且还在RecyclerView上设置了布局管理器和适配器,但是看不到回收站视图。

请帮助我了解代码中的错误。

<?xml version="1.0" encoding="utf-8"?>
<layout 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">

    <data>

    </data>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

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

            <android.support.design.widget.AppBarLayout
                android:id="@+id/app_bar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

                <android.support.v7.widget.RecyclerView
                    android:id="@+id/list"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    />
            </android.support.design.widget.AppBarLayout>

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

    </RelativeLayout>
</layout>

0 个答案:

没有答案