张海江
2016-12-30 455b3bee444ee94b016be9d4f8ad9111f7e3c6fa
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
<?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" 
    android:background="@color/wallet_base_window_bg"
    >
 
    <com.baidu.wallet.base.widget.BdActionBar
        android:id="@+id/bdactionbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
 
    <TextView
        android:id="@+id/ebpay_sub_title"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="@dimen/ebpay_line_margin_15"
        android:text="@string/ebpay_check_phone"
        android:textColor="@color/ebpay_text_333"
        android:textSize="@dimen/ebpay_text_size_18" />
 
    <TextView
        android:id="@+id/ebpay_tip_top_left"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="@dimen/ebpay_line_margin_10"
        android:lineSpacingMultiplier="1.3"
        android:textColor="@color/ebpay_text_normal"
        android:textSize="12sp" />
 
    <LinearLayout
        android:id="@+id/ebpay_message_vcode_area"
        android:layout_width="fill_parent"
        android:layout_height="@dimen/ebpay_white_line_height"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="@dimen/ebpay_line_margin_10"
        android:background="@drawable/wallet_base_bg_input_normal"
        android:gravity="center_vertical"
        android:orientation="horizontal"
        android:paddingLeft="10dp"
        android:paddingRight="10dp" >
 
        <TextView
            android:id="@+id/ebpay_vcode_tip"
            android:layout_width="@dimen/ebpay_fast_max_width"
            android:layout_height="wrap_content"
            android:gravity="left|center_vertical"
            android:singleLine="true"
            android:text="@string/ebpay_input_sms_code"
            android:textColor="@color/ebpay_text_333"
            android:textSize="@dimen/ebpay_text_size_15" />
 
        <EditText
            android:id="@+id/ebpay_message_vcode_id"
            style="@style/EditCommonStyle"
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:hint="@string/ebpay_input_sms_code"
            android:inputType="textUri"
            android:maxLength="10"
            android:digits="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
            android:singleLine="true"
            android:textColor="@color/ebpay_black"
            android:textSize="@dimen/ebpay_text_size_15" />
 
        <TextView
            android:id="@+id/ebpay_get_vcode_id"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:singleLine="true"
            android:text="@string/ebpay_get_sms_code"
            android:textColor="@color/wallet_base_click_text_color"
            android:textSize="@dimen/ebpay_text_size_15" />
    </LinearLayout>
 
    <TextView
        android:id="@+id/ebpay_error_tip"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="5dp"
        android:textColor="@color/ebpay_red"
        android:visibility="invisible" />
 
    <Button
        android:id="@+id/ebpay_next_btn"
        android:layout_width="fill_parent"
        android:layout_height="@dimen/ebpay_bt_height"
        android:layout_marginBottom="@dimen/ebpay_line_margin_10"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="@dimen/ebpay_line_margin_20"
        android:background="@drawable/wallet_base_btn"
        android:text="@string/ebpay_pay_next"
        android:textColor="@color/ebpay_white"
        android:enabled="false"
        android:textSize="@dimen/ebpay_text_size_18" />
 
    <TextView
        android:id="@+id/ebpay_tip_bottom_right"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="@dimen/ebpay_line_margin_10"
        android:text="@string/ebpay_get_sms_error"
        android:textColor="@color/wallet_base_click_text_color"
        android:textSize="12sp" />
    <include layout="@layout/ebpay_layout_sectips" />
</LinearLayout>