结算
This commit is contained in:
@@ -0,0 +1,95 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="#E7EFF8"
|
||||
android:orientation="vertical">
|
||||
|
||||
<Space
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="167dp"
|
||||
android:layout_gravity="bottom"
|
||||
android:layout_marginHorizontal="32dp"
|
||||
android:layout_marginBottom="64dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<androidx.appcompat.widget.AppCompatCheckedTextView
|
||||
android:id="@+id/btnPayQrCode"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1"
|
||||
android:background="@drawable/bg_pay_icon"
|
||||
android:checked="true"
|
||||
android:drawablePadding="10dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:paddingTop="30dp"
|
||||
android:text="在线支付"
|
||||
android:textAlignment="center"
|
||||
android:textColor="@color/color_pay"
|
||||
android:textSize="30sp"
|
||||
android:textStyle="bold"
|
||||
app:drawableTopCompat="@drawable/pay_qrcode" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatCheckedTextView
|
||||
android:id="@+id/btnPayCash"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginStart="32dp"
|
||||
android:layout_weight="1"
|
||||
android:background="@drawable/bg_pay_icon"
|
||||
android:checked="false"
|
||||
android:drawablePadding="10dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:paddingTop="30dp"
|
||||
android:text="现金"
|
||||
android:textAlignment="center"
|
||||
android:textColor="@color/color_pay"
|
||||
android:textSize="30sp"
|
||||
android:textStyle="bold"
|
||||
app:drawableTopCompat="@drawable/pay_cash" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatCheckedTextView
|
||||
android:id="@+id/btnPayNumber"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginStart="32dp"
|
||||
android:layout_weight="1"
|
||||
android:background="@drawable/bg_pay_icon"
|
||||
android:checked="false"
|
||||
android:drawablePadding="11dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:paddingTop="30dp"
|
||||
android:text="消费码"
|
||||
android:textAlignment="center"
|
||||
android:textColor="@color/color_pay"
|
||||
android:textSize="30sp"
|
||||
android:textStyle="bold"
|
||||
app:drawableTopCompat="@drawable/pay_number" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatCheckedTextView
|
||||
android:id="@+id/btnPayFace"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginStart="32dp"
|
||||
android:layout_weight="1"
|
||||
android:background="@drawable/bg_pay_icon"
|
||||
android:checked="false"
|
||||
android:drawablePadding="11dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:paddingTop="30dp"
|
||||
android:text="刷脸"
|
||||
android:textAlignment="center"
|
||||
android:textColor="@color/color_pay"
|
||||
android:textSize="30sp"
|
||||
android:textStyle="bold"
|
||||
app:drawableTopCompat="@drawable/pay_face" />
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
Reference in New Issue
Block a user