防止回收者视图占用整个空间

时间:2015-03-19 10:59:45

标签: android android-recyclerview

我在片段中使用了RecyclerView,并将其高度设置为wrap_content并在其下方有一个按钮。但问题是RecyclerView占用了整个空间并且按钮不可见。出了什么问题?

这是我的xml文件 -

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:orientation="vertical"
          android:background="#fff"
          android:layout_width="match_parent"
          android:layout_height="match_parent">

<TextView
    android:id="@+id/empty_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:textSize="17sp"
    android:layout_marginTop="20dp"
    android:visibility="gone"
    android:text="You haven't added any names yet!"/>

<android.support.v7.widget.RecyclerView
    android:id="@+id/names_list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scrollbars="vertical"/>

<Button
    android:id="@+id/add_name"
    android:layout_width="203dp"
    android:layout_height="wrap_content"
    android:layout_below="@+id/recycler_view"
    android:padding="15dp"
    android:textColor="#F3F3F3"
    android:textSize="17sp"/>

</LinearLayout>`

2 个答案:

答案 0 :(得分:16)

您应该将weight设置为RecyclerView并将height更改为0dp

<android.support.v7.widget.RecyclerView
android:id="@+id/names_list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:scrollbars="vertical"/>

答案 1 :(得分:3)

将RecyclerView和Button包裹在LinearLayout中,而不是添加

android:layout_height="0dp"
android:layout_weight="1"

到RecyclerView。

您的代码应如下所示:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:background="#fff"
              android:orientation="vertical">

    <TextView
        android:id="@+id/empty_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:gravity="center"
        android:text="You haven't added any names yet!"
        android:textSize="17sp"
        android:visibility="gone"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="false"
        android:layout_alignParentEnd="true"
        android:layout_below="@+id/empty_view"
        android:orientation="vertical">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/names_list"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:scrollbars="vertical"/>

        <Button
            android:id="@+id/add_name"
            android:layout_width="203dp"
            android:layout_height="wrap_content"
            android:layout_below="@+id/recycler_view"
            android:padding="15dp"
            android:textColor="#F3F3F3"
            android:textSize="17sp"/>

    </LinearLayout>
</LinearLayout>