gpt4 book ai didi

android - 如何制作方形 CardView (Android)

转载 作者:行者123 更新时间:2023-12-04 09:33:41 26 4
gpt4 key购买 nike

如何制作正方形CardView .

当我设置 layout_weightCardView它不像 CardView 上的正方形.

请给我一个解决方案:(没有设置固定的高度和宽度)

见下图:
enter image description here

代码:

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="2"
android:weightSum="3">

<android.support.v7.widget.CardView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_margin="4dp"
android:layout_weight="2"
app:cardBackgroundColor="@color/silver"
tools:ignore="NestedWeights">


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

<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical"
android:weightSum="1">

<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="4dp"
android:layout_weight="0.5"
app:cardBackgroundColor="@color/silver">


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

<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="4dp"
android:layout_weight="0.5"
app:cardBackgroundColor="@color/silver">


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

</LinearLayout>

</LinearLayout>

最佳答案

您可以使用 ConstraintLayout而不是多个 LinearLayout与重量。

添加

implementation 'com.android.support.constraint:constraint-layout:1.1.2'

在您的 build.gradle .然后你可以尝试类似的方法(将 dimensionRatio 设置为 1):
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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"
android:padding="4dp">

<android.support.v7.widget.CardView
android:id="@+id/card1"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintDimensionRatio="1"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/no_picture" />
</android.support.v7.widget.CardView>

<android.support.v7.widget.CardView
android:id="@+id/card2"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="4dp"
app:layout_constraintBottom_toTopOf="@id/card3"
app:layout_constraintDimensionRatio="1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/card1"
app:layout_constraintTop_toTopOf="@id/card1">

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/no_picture" />
</android.support.v7.widget.CardView>


<android.support.v7.widget.CardView
android:id="@+id/card3"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="4dp"
app:layout_constraintBottom_toBottomOf="@id/card1"
app:layout_constraintDimensionRatio="1"
app:layout_constraintEnd_toEndOf="@id/card2"
app:layout_constraintStart_toStartOf="@id/card2"
app:layout_constraintTop_toBottomOf="@id/card2">

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/no_picture" />
</android.support.v7.widget.CardView>

</android.support.constraint.ConstraintLayout>

结果:

enter image description here

关于android - 如何制作方形 CardView (Android),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51437259/

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