Pu Zhibing
2025-06-25 844fc3910b72130f79480714bcba98106d8f9177
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<?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>