32 lines
1.3 KiB
XML
32 lines
1.3 KiB
XML
![]() |
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginHorizontal="2dp"
|
||
|
android:layout_marginVertical="2dp">
|
||
|
|
||
|
<com.google.android.material.imageview.ShapeableImageView
|
||
|
android:id="@+id/iv_img"
|
||
|
android:background="#F0E7E7"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="0dp"
|
||
|
android:scaleType="centerCrop"
|
||
|
app:layout_constraintDimensionRatio="1:1"
|
||
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
app:shapeAppearance="@style/shape_8dp"
|
||
|
tools:src="@drawable/card_firework_1" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/iv_border"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="0dp"
|
||
|
android:background="@drawable/card_bg_select"
|
||
|
android:visibility="gone"
|
||
|
app:layout_constraintBottom_toBottomOf="@id/iv_img"
|
||
|
app:layout_constraintEnd_toEndOf="@id/iv_img"
|
||
|
app:layout_constraintStart_toStartOf="@id/iv_img"
|
||
|
app:layout_constraintTop_toTopOf="@id/iv_img" />
|
||
|
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|