gpt4 book ai didi

android - RecyclerView 项目之间的差距很大

转载 作者:数据小太阳 更新时间:2023-10-29 02:52:57 29 4
gpt4 key购买 nike

在我运行我的应用程序后,我在 RecyclerView 项目之间发现了很大的差距!!这是我的代码:Github Large gap between recyclerview items

enter image description here

最佳答案

像这样改变你的布局

activity_main.xml

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

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

view_item.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">

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/itemView"
android:src="@drawable/diy"
android:layout_margin="1dp"
android:adjustViewBounds="true"/>
</RelativeLayout>

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

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