81 lines
3.0 KiB
XML
81 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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_300dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
app:cardCornerRadius="@dimen/sw_16dp"
|
|
app:cardElevation="@dimen/sw_8dp"
|
|
android:background="@android:color/transparent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:background="@drawable/dialog_background"
|
|
android:padding="@dimen/sw_24dp">
|
|
|
|
<!-- 标题 -->
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/detail_purchase_confirm"
|
|
android:textSize="@dimen/sw_18sp"
|
|
android:textStyle="bold"
|
|
android:textColor="#1B1F1A"
|
|
android:gravity="center"
|
|
android:layout_marginBottom="@dimen/sw_16dp" />
|
|
|
|
<!-- 消息内容 -->
|
|
<TextView
|
|
android:id="@+id/tv_message"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/detail_purchase_confirm_msg"
|
|
android:textSize="@dimen/sw_14sp"
|
|
android:textColor="#666666"
|
|
android:gravity="center"
|
|
android:lineSpacingExtra="@dimen/sw_4dp"
|
|
android:layout_marginBottom="@dimen/sw_24dp" />
|
|
|
|
<!-- 按钮容器 -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center">
|
|
|
|
<!-- 取消按钮 -->
|
|
<TextView
|
|
android:id="@+id/btn_cancel"
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/sw_48dp"
|
|
android:layout_weight="1"
|
|
android:layout_marginEnd="@dimen/sw_8dp"
|
|
android:text="@string/cancel"
|
|
android:textSize="@dimen/sw_14sp"
|
|
android:textColor="#999999"
|
|
android:gravity="center"
|
|
android:background="@drawable/button_cancel_background"
|
|
android:textStyle="normal" />
|
|
|
|
<!-- 确认按钮 -->
|
|
<TextView
|
|
android:id="@+id/btn_confirm"
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/sw_48dp"
|
|
android:layout_weight="1"
|
|
android:layout_marginStart="@dimen/sw_8dp"
|
|
android:text="@string/confirm"
|
|
android:textSize="@dimen/sw_14sp"
|
|
android:textColor="#FFFFFF"
|
|
android:gravity="center"
|
|
android:background="@drawable/button_confirm_background"
|
|
android:textStyle="bold" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.cardview.widget.CardView>
|