RecyclerView项目之间有很大的空间

时间:2016-05-16 06:56:45

标签: android-studio android-recyclerview

我有一个包含多个项目的RecyclerView。而不是每行之间的空间最小的项目直接在彼此之下,每个项目之间存在巨大的差距,如图所示:(抱歉图像不是很好,我把它放在小手机上)

Image displaying the issue

我的RecyclerView布局文件在这里:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
    android:id="@+id/layout_list_name"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentStart="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:textStyle="bold"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
    android:id="@+id/layout_list_date"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignStart="@+id/layout_list_name"
    android:layout_alignLeft="@+id/layout_list_name"
    android:layout_below="@+id/layout_list_name" />

<ImageButton
    android:id="@+id/layout_list_delete"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true"
    android:contentDescription="@string/layout_list_delete"
    android:src="@drawable/delete" />

如何摆脱这种巨大的差距?

2 个答案:

答案 0 :(得分:0)

尝试将layout_height="match_parent"更改为layout_height="wrap_content"。这应该有希望解决你的问题。

答案 1 :(得分:0)

将父布局的高度更改为wrap_content。对于您发布的XML文件,它应该是:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout  
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">