gpt4 book ai didi

java - 单个 CardView 中的多个图像

转载 作者:行者123 更新时间:2023-12-02 10:46:55 29 4
gpt4 key购买 nike

我想知道像 Google Music Play 这样的应用程序如何在 1 个 CardView 缩略图中显示 4 个图像。我尝试获取 4 个图像并将它们处理成单个图像。不过,当我有 20 行时,速度非常慢。另一方面,谷歌做得非常快。如果有任何信息能够为我指明正确的方向,我将不胜感激。

CardView 缩略图如下所示:

+-----------+
| 1 | 2 |
-------------
| 3 | 4 |
+-----------+

最佳答案

您可以对列表项使用这种布局,并根据需要调整约束。

<android.support.v7.widget.CardView>
<android.support.constraint.ConstraintLayout>
<ImageView
android:id="@+id/iv_1"
app:layout_constraintStart_toStartOf="prent"
app:layout_constraintTop_toTopOf="prent"/>

<ImageView
android:id="@+id/iv_2"
app:layout_constraintEnd_toEndOf="prent"
app:layout_constraintTop_toTopOf="prent"/>

<ImageView
android:id="@+id/iv_3"
app:layout_constraintStart_toStartOf="prent"
app:layout_constraintTop_toBottomOf="@id/iv_1"/>

<ImageView
android:id="@+id/iv_4"
app:layout_constraintEnd_toEndOf="prent"
app:layout_constraintTop_toBottomOf="@id/iv_2"/>
</android.support.constraint.ConstraintLayout>
</android.support.v7.widget.CardView>

关于java - 单个 CardView 中的多个图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52473611/

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