<?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: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:drawableEnd="@mipmap/more_black"
|
android:drawablePadding="10dp"
|
android:hint="选择银行卡"
|
android:textColor="#ff333333"
|
android:textSize="14sp"
|
android:textStyle="bold" />
|
|
|
</RelativeLayout>
|
|
<!-- <include layout="@layout/include_line_14"/>-->
|
|
<!-- <LinearLayout-->
|
<!-- android:layout_width="match_parent"-->
|
<!-- android:orientation="horizontal"-->
|
<!-- android:background="@color/white"-->
|
<!-- android:gravity="center_vertical"-->
|
<!-- android:layout_height="50dp">-->
|
|
<!-- <TextView-->
|
<!-- android:layout_width="110dp"-->
|
<!-- android:layout_height="wrap_content"-->
|
<!-- android:text="银行卡号"-->
|
<!-- android:paddingStart="14dp"-->
|
<!-- android:textColor="#ff333333"-->
|
<!-- android:textSize="14sp"/>-->
|
|
<!-- <EditText-->
|
<!-- android:id="@+id/et_card_num"-->
|
<!-- android:layout_width="match_parent"-->
|
<!-- android:layout_height="match_parent"-->
|
<!-- android:hint="填写银行卡号"-->
|
<!-- android:maxLines="1"-->
|
<!-- android:background="@null"-->
|
<!-- android:textColor="#ff000000"-->
|
<!-- android:textSize="14sp"-->
|
<!-- />-->
|
|
|
<!-- </LinearLayout>-->
|
|
<!-- <include layout="@layout/include_line_14"/>-->
|
|
<!-- <LinearLayout-->
|
<!-- android:layout_width="match_parent"-->
|
<!-- android:orientation="horizontal"-->
|
<!-- android:background="@color/white"-->
|
<!-- android:gravity="center_vertical"-->
|
<!-- android:layout_height="50dp">-->
|
|
<!-- <TextView-->
|
<!-- android:layout_width="110dp"-->
|
<!-- android:layout_height="wrap_content"-->
|
<!-- android:text="持卡人姓名"-->
|
<!-- android:paddingStart="14dp"-->
|
<!-- android:textColor="#ff333333"-->
|
<!-- android:textSize="14sp"/>-->
|
|
<!-- <EditText-->
|
<!-- android:id="@+id/et_name"-->
|
<!-- android:layout_width="match_parent"-->
|
<!-- android:layout_height="match_parent"-->
|
<!-- android:hint="填写持卡人姓名"-->
|
<!-- android:maxLines="1"-->
|
<!-- android:maxLength="10"-->
|
<!-- android:background="@null"-->
|
<!-- android:textColor="#ff000000"-->
|
<!-- android:textSize="14sp"-->
|
<!-- />-->
|
|
|
<!-- </LinearLayout>-->
|
|
<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: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:hint="填写提现金额(最多可提¥100)"
|
android:inputType="numberDecimal"
|
android:maxLength="10"
|
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>
|