<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:background="@color/white"
|
android:layout_height="wrap_content"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
|
android:text="支付费用"
|
android:textSize="18sp"
|
android:textColor="@color/textColor"
|
android:textStyle="bold"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
android:layout_marginTop="16dp"
|
android:layout_marginStart="14dp"/>
|
<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content"
|
android:src="@mipmap/icon_close_black"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
android:padding="14dp"
|
android:layout_marginTop="6dp"
|
android:id="@+id/iv_close"/>
|
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toBottomOf="@id/iv_close"
|
android:text="0"
|
android:textColor="@color/color_text_price"
|
android:textStyle="bold"
|
android:textSize="36sp"
|
android:id="@+id/tv_money"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="0张可用"
|
android:textColor="@color/textColor66"
|
android:gravity="end"
|
android:textStyle="normal"
|
app:layout_constraintTop_toBottomOf="@id/tv_money"
|
android:drawableEnd="@mipmap/icon_more_black"
|
android:layout_marginStart="14dp"
|
android:layout_marginEnd="14dp"
|
android:id="@+id/tv_coupon"
|
style="@style/style_text_dialog_pay"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
style="@style/style_text_dialog_pay"
|
app:layout_constraintBaseline_toBaselineOf="@id/tv_coupon"
|
app:layout_constraintStart_toStartOf="@id/tv_coupon"
|
android:id="@+id/tv_coupon_title"
|
android:text="优惠券"/>
|
<View
|
style="@style/style_form_divider_line"
|
android:layout_marginStart="14dp"
|
android:layout_marginEnd="14dp"
|
app:layout_constraintTop_toBottomOf="@id/tv_coupon"
|
android:id="@+id/view_coupon"/>
|
<androidx.constraintlayout.widget.Group
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:id="@+id/group_coupon"
|
android:visibility="gone"
|
app:constraint_referenced_ids="tv_coupon,tv_coupon_title,view_coupon"/>
|
<RadioGroup
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:id="@+id/rg_pay"
|
android:layout_marginStart="14dp"
|
android:layout_marginEnd="14dp"
|
android:layout_marginTop="1px"
|
app:layout_constraintTop_toBottomOf="@id/tv_coupon">
|
<RadioButton
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
style="@style/style_text_dialog_pay"
|
android:id="@+id/rb_ali"
|
android:checked="true"
|
android:drawableEnd="@drawable/selector_radio"
|
android:text="支付宝"/>
|
|
<View style="@style/style_form_divider_line"/>
|
|
<RadioButton
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
style="@style/style_text_dialog_pay"
|
android:drawableEnd="@drawable/selector_radio"
|
android:text="微信支付"
|
android:id="@+id/rb_wx"/>
|
<View style="@style/style_form_divider_line"/>
|
<RadioButton
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
style="@style/style_text_dialog_pay"
|
android:id="@+id/rb_balance"
|
android:drawableEnd="@drawable/selector_radio"
|
android:text="充值余额"/>
|
|
<View style="@style/style_form_divider_line"/>
|
<RadioButton
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
style="@style/style_text_dialog_pay"
|
android:id="@+id/rb_offline"
|
android:visibility="gone"
|
android:drawableEnd="@drawable/selector_radio"
|
android:text="线下支付"/>
|
<View style="@style/style_form_divider_line"/>
|
</RadioGroup>
|
<TextView android:layout_width="match_parent" android:layout_height="wrap_content"
|
style="@style/style_tv_action"
|
android:id="@+id/tv_action"
|
android:text="立即支付"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
android:layout_marginTop="26dp"
|
android:layout_marginStart="50dp"
|
android:layout_marginEnd="50dp"
|
app:layout_constraintTop_toBottomOf="@id/rg_pay"
|
app:layout_constraintBottom_toBottomOf="parent"
|
android:layout_marginBottom="14dp"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|