feat:首次提交

This commit is contained in:
Max
2024-03-07 21:00:40 +08:00
commit 1071afd9a8
71 changed files with 2200 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<?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>