<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical">
|
|
<RelativeLayout
|
android:id="@+id/rl_select_card"
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:background="@color/white">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerVertical="true"
|
android:layout_marginStart="14dp"
|
android:text="提现至"
|
android:textStyle="bold"
|
android:textColor="#ff333333"
|
android:textSize="14sp" />
|
|
<TextView
|
android:id="@+id/tv_select_card"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentEnd="true"
|
android:layout_centerVertical="true"
|
android:layout_marginEnd="14dp"
|
android:drawablePadding="10dp"
|
android:textColor="#ff333333"
|
android:text="微信零钱"
|
android:textSize="14sp"
|
android:textStyle="bold" />
|
|
|
</RelativeLayout>
|
|
|
|
<include layout="@layout/include_line_14" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:background="@color/white"
|
android:gravity="center_vertical"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="110dp"
|
android:layout_height="wrap_content"
|
android:paddingStart="14dp"
|
android:text="提现金额"
|
android:textStyle="bold"
|
android:textColor="#ff333333"
|
android:textSize="14sp" />
|
|
<EditText
|
android:id="@+id/et_money"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@null"
|
android:inputType="numberDecimal"
|
android:maxLength="10"
|
android:textStyle="bold"
|
android:layout_marginEnd="14dp"
|
android:gravity="end|center_vertical"
|
android:maxLines="1"
|
android:textColor="#ff000000"
|
android:textSize="14sp" />
|
|
|
</LinearLayout>
|
|
<include layout="@layout/include_line_14" />
|
|
<include layout="@layout/include_weight_height" />
|
|
<TextView
|
android:id="@+id/tv_get_money"
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:layout_marginStart="14dp"
|
android:layout_marginEnd="14dp"
|
android:layout_marginBottom="14dp"
|
android:background="@drawable/bg_login"
|
android:gravity="center"
|
android:text="确认提交"
|
android:textColor="#ffffffff"
|
android:textSize="14sp" />
|
|
|
</LinearLayout>
|