|
@@ -0,0 +1,184 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
+
|
|
|
+ <data>
|
|
|
+
|
|
|
+ <variable
|
|
|
+ name="vm"
|
|
|
+ type="com.hdl.xl.vmodel.CloudWithVModel" />
|
|
|
+
|
|
|
+ <import type="android.view.View"/>
|
|
|
+
|
|
|
+ </data>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/ll"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@color/c_bg"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginTop="30dp"
|
|
|
+ android:visibility="invisible"
|
|
|
+ android:text="可以提现金额"
|
|
|
+ tools:visibility="visible"
|
|
|
+ android:textColor="#888888"
|
|
|
+ android:textSize="15sp" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="18dp"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ android:visibility="invisible"
|
|
|
+ tools:visibility="visible"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="¥"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="30sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@{vm.accountMoney}"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="30sp" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginTop="10sp"
|
|
|
+ android:background="@drawable/bg_money_top"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:paddingStart="15dp"
|
|
|
+ android:paddingEnd="15dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:text="提现金额"
|
|
|
+ android:textColor="#222222"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="52dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ >
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:text="¥"
|
|
|
+ android:textColor="#222222"
|
|
|
+ android:textSize="26sp" />
|
|
|
+
|
|
|
+ <com.ysnows.base.widget.DelEditText
|
|
|
+ android:id="@+id/et_password"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@null"
|
|
|
+ android:hint="请输入提现金额"
|
|
|
+ android:inputType="numberDecimal|number"
|
|
|
+ android:paddingStart="9dp"
|
|
|
+ android:text="@={vm.money}"
|
|
|
+ android:paddingEnd="12dp"
|
|
|
+ android:textColor="@color/text_title"
|
|
|
+ android:textColorHint="#999999"
|
|
|
+ android:textSize="20sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:textColor="#2EABFE"
|
|
|
+ android:textSize="13sp"
|
|
|
+ android:onClick="@{v->vm.toAll()}"
|
|
|
+ android:visibility="gone"
|
|
|
+ android:text="全部提现"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:background="#F3F3F3"
|
|
|
+ android:layout_height="@dimen/dp_1"/>
|
|
|
+
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ app:qmui_backgroundColor="#F3F3F3"
|
|
|
+ app:qmui_borderColor="#F3F3F3"
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:paddingEnd="10dp"
|
|
|
+ android:paddingStart="10dp"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ app:qmui_radius="12dp"
|
|
|
+ android:layout_height="52dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:text="云钱包支付密码:"
|
|
|
+ android:textSize="15sp"
|
|
|
+ android:textColor="#222222"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+
|
|
|
+ <cn.passguard.PassGuardEdit
|
|
|
+ android:id="@+id/gurd_edit"
|
|
|
+ android:background="@null"
|
|
|
+ android:hint="请输入"
|
|
|
+ android:tag="请输入"
|
|
|
+ android:textSize="15sp"
|
|
|
+ android:textColor="#222222"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:paddingStart="12dp"
|
|
|
+ android:paddingEnd="10dp"
|
|
|
+ android:layout_height="match_parent"/>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ </com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/ll_submit"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="48dp"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginTop="47dp"
|
|
|
+ android:layout_marginEnd="15dp"
|
|
|
+ android:background="@drawable/bg_logo_but"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="立即提现"
|
|
|
+ android:textColor="@color/text_title"
|
|
|
+ android:textSize="20sp" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+</layout>
|