64 lines
2.9 KiB
XML
64 lines
2.9 KiB
XML
<!-- 卡片内容 -->
|
|
<androidx.cardview.widget.CardView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="@dimen/sw_170dp"
|
|
android:layout_height="wrap_content"
|
|
android:background="#F8F8F8"
|
|
android:id="@+id/theme_card"
|
|
app:cardCornerRadius="@dimen/sw_15dp"
|
|
app:cardUseCompatPadding="true">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="#F8F8F8"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/theme_image"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/sw_127dp"
|
|
android:scaleType="centerCrop"
|
|
android:src="@drawable/bg" />
|
|
|
|
<TextView
|
|
android:id="@+id/theme_name"
|
|
android:layout_width="@dimen/sw_130dp"
|
|
android:layout_height="@dimen/sw_20dp"
|
|
android:layout_marginTop="@dimen/sw_8dp"
|
|
android:layout_marginStart="@dimen/sw_6dp"
|
|
android:text="Dopamine"
|
|
android:textColor="#1B1F1A"
|
|
android:textSize="@dimen/sw_14sp"
|
|
android:textStyle="bold" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/sw_23dp"
|
|
android:layout_marginStart="@dimen/sw_6dp"
|
|
android:layout_marginTop="@dimen/sw_8dp"
|
|
android:layout_marginBottom="@dimen/sw_12dp"
|
|
android:padding="@dimen/sw_4dp"
|
|
android:gravity="center"
|
|
android:background="@drawable/gold_coin_background_required"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:layout_width="@dimen/sw_17dp"
|
|
android:layout_height="@dimen/sw_17dp"
|
|
android:scaleType="centerCrop"
|
|
android:src="@drawable/gold_coin" />
|
|
|
|
<TextView
|
|
android:id="@+id/theme_price"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/_sw_2dp"
|
|
android:layout_marginStart="@dimen/sw_4dp"
|
|
android:text="0.00"
|
|
android:textColor="#02BEAC"
|
|
android:textSize="@dimen/sw_14sp" />
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView> |