<?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"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="#00000000"
|
android:gravity="center_horizontal"
|
android:orientation="vertical">
|
|
<androidx.cardview.widget.CardView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="#00000000"
|
app:cardCornerRadius="10dp"
|
app:cardElevation="0dp">
|
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_horizontal"
|
android:gravity="center_horizontal"
|
android:orientation="vertical">
|
|
<TextView
|
android:id="@+id/tv_title"
|
android:layout_width="match_parent"
|
android:layout_height="48dp"
|
android:background="@drawable/shape_dialog_title_bar"
|
android:gravity="center"
|
android:text="处理申请"
|
android:textColor="@color/white"
|
android:textSize="18sp"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toTopOf="parent" />
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="32dp"
|
android:gravity="center"
|
android:text="你是否同意这条支付申请?"
|
android:textColor="#fff73547"
|
android:textSize="18sp" />
|
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="20dp"
|
android:layout_marginTop="32dp"
|
android:layout_marginRight="20dp"
|
android:layout_marginBottom="32dp"
|
android:orientation="horizontal">
|
|
<Button
|
style="@style/Widget.Material3.Button.OutlinedButton"
|
android:id="@+id/button_reject"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_marginRight="20dp"
|
android:layout_weight="1"
|
android:text="驳回" />
|
|
<Button
|
android:id="@+id/button_agree"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:text="同意" />
|
|
</LinearLayout>
|
|
|
</LinearLayout>
|
</androidx.cardview.widget.CardView>
|
|
<ImageView
|
android:id="@+id/iv_clode"
|
android:layout_width="30dp"
|
android:layout_height="30dp"
|
android:layout_marginTop="12dp"
|
android:scaleType="fitXY"
|
|
android:src="@mipmap/icon_close"></ImageView>
|
</LinearLayout>
|