gpt4 book ai didi

android - 无法在水平 RecycleView 中的项目之间添加边距

转载 作者:行者123 更新时间:2023-11-29 19:08:09 26 4
gpt4 key购买 nike

我使用水平 RecyclerView,我的列表项之间的边距是恒定的,我想增加列表项间距,我尝试增加 layout_margin 但没有变化.

下面是我的列表项布局

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="30dp"
android:background="@color/colorWhite"
app:cardElevation="2dp"
app:cardCornerRadius="5dp"
app:cardPreventCornerOverlap="false"
app:cardUseCompatPadding="true">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:selectableItemBackground"
android:orientation="vertical"
android:padding="0dp">

<ImageView
android:id="@+id/itemImage"
android:layout_width="170dp"
android:layout_height="170dp"
android:layout_gravity="center_horizontal"
android:layout_margin="10dp"
android:scaleType="fitCenter"
android:src="@drawable/ic_launcher_background" />


<TextView
android:id="@+id/tvTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/itemImage"
android:gravity="center"
android:padding="5dp"
android:text="Sample title"
android:textColor="@color/colorTextBlack"
android:textSize="16dp" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="14dp"
android:gravity="center"
android:textSize="12dp"
android:textColor="#9f9f9f"
android:text="2 Aug, London" />

</LinearLayout>

</android.support.v7.widget.CardView>

这是我得到的 View ,我想增加项目之间的差距 enter image description here

有人可以帮我解决这个问题吗?

最佳答案

您可以像这样更改您的 XML 并尝试,

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp">

<android.support.v7.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@color/colorAccent"
app:cardCornerRadius="5dp"
app:cardElevation="2dp"
app:cardPreventCornerOverlap="false"
app:cardUseCompatPadding="true">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:selectableItemBackground"
android:orientation="vertical"
android:padding="0dp">

<ImageView
android:id="@+id/itemImage"
android:layout_width="170dp"
android:layout_height="170dp"
android:layout_gravity="center_horizontal"
android:layout_margin="10dp"
android:scaleType="fitCenter"
android:src="@mipmap/ic_launcher" />


<TextView
android:id="@+id/tvTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/itemImage"
android:gravity="center"
android:padding="5dp"
android:text="Sample title"
android:textColor="@color/cardview_dark_background"
android:textSize="16dp" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="14dp"
android:gravity="center"
android:text="2 Aug, London"
android:textColor="#9f9f9f"
android:textSize="12dp" />

</LinearLayout>

</android.support.v7.widget.CardView>
</LinearLayout>

关于android - 无法在水平 RecycleView 中的项目之间添加边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46419157/

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