如何删除RecycleView项目之间的空格?

时间:2020-07-07 13:00:58

标签: android android-recyclerview space

我具有文本的回收视图,但无法消除它们之间的空格。我尝试将填充物清零,但一无所获。这是回收站xml:

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/list"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

它是约束布局的子代

这是列表项的xml:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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">

    <TextView
        android:id="@+id/listItem"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:textSize="24sp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

Screenshot

2 个答案:

答案 0 :(得分:1)

将XML中的ConstraintLayout的高度更改为wrap_content

更改高度

android:layout_height="match_parent"

android:layout_height="wrap_content"

答案 1 :(得分:0)

使约束布局中的chmod换行

matchparent