我在一个 fragment 中使用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>`
最佳答案
您应该将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"/>
关于android - 防止回收者的视线占用整个空间,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29142789/