gpt4 book ai didi

android-studio - RecyclerView项目之间有很大的空间

转载 作者:行者123 更新时间:2023-12-03 17:55:59 25 4
gpt4 key购买 nike

我有一个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" />




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

最佳答案

尝试将layout_height="match_parent"更改为layout_height="wrap_content"。那有望解决您的问题。

关于android-studio - RecyclerView项目之间有很大的空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37248325/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com