我正在尝试像下面这样显示卡视图
+----------------------------+
|[icon1] text 1 |
| ▼ text3 |
|[icon2] text 2 |
+----------------------------+
如何创建这样的卡片?
我尝试在cardView内使用2种不同的布局,但它们相互重叠。
答案 0 :(得分:0)
如果您查看CardView的文档,将会看到它扩展了FrameLayout,因此,如果其中有多个子代,它们将重叠。您需要做的是将单个布局作为CardView的直接子视图,即ConstraintLayout,并在此ConstraintLayout中设置所需的子视图数。
所以这段代码...
<androidx.cardview.widget.CardView
app:cardCornerRadius="8dp"
android:layout_margin="16dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/img1"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_margin="16dp"
android:src="@mipmap/ic_launcher"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:id="@+id/img2"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_margin="16dp"
android:src="@mipmap/ic_launcher"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toBottomOf="@id/img1" />
<TextView
android:id="@+id/tv1"
android:text="Hello"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="@+id/img1"
app:layout_constraintBottom_toBottomOf="@+id/img1"
app:layout_constraintLeft_toRightOf="@id/img1"
android:layout_margin="16dp"/>
<TextView
android:id="@+id/tv2"
android:text="World"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="@+id/img2"
app:layout_constraintBottom_toBottomOf="@+id/img2"
app:layout_constraintLeft_toRightOf="@id/img2"
android:layout_margin="16dp"/>
<TextView
android:id="@+id/tv3"
android:text="Hello World!"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:layout_margin="16dp"/>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.cardview.widget.CardView>