client_Hale
2018-09-20 11a35343de8c14c2ddc879caffa40fa239397404
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
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scrollbars="none" >
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#FEFFFF"
        android:paddingBottom="50dp" >
 
        <TextView
            android:id="@+id/textView1"
            android:layout_width="match_parent"
            android:layout_height="48dp"
            android:gravity="center"
            android:textColor="#DECCAC"
            android:singleLine="true"
            android:text="@string/txt_mobilefind"
            android:textAppearance="?android:attr/textAppearanceSmall" />
 
        <RelativeLayout
            android:id="@+id/relativeLayout2"
            android:layout_width="match_parent"
            android:layout_marginLeft="16dp"
            android:layout_marginRight="16dp"
            android:layout_height="45dp"
            android:layout_below="@+id/textView1"
            android:background="@drawable/sp_findpwd_et" >
 
            <EditText
                android:id="@+id/et_mobilefindpwd_username"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_marginLeft="10dp"
                android:background="@null"
                android:hint="@string/txt_account" >
            </EditText>
        </RelativeLayout>
 
 
        <RelativeLayout
            android:id="@+id/relativeLayout4"
            android:layout_width="wrap_content"
            android:layout_height="45dp"
            android:layout_alignParentLeft="true"
            android:layout_below="@+id/relativeLayout2"
            android:layout_marginLeft="16dp"
            android:layout_marginRight="120dp"
            android:layout_marginTop="16dp"
            android:background="@drawable/sp_findpwd_et" >
 
            <EditText
                android:id="@+id/et_mobilefindpwd_validatacode"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_marginLeft="10dp"
                android:background="@null"
                android:hint="@string/edt_validate" >
            </EditText>
 
            
        </RelativeLayout>
 
        <RelativeLayout
            android:id="@+id/relativeLayout5"
            android:layout_width="match_parent"
            android:layout_height="45dp"
            android:layout_alignParentLeft="true"
            android:layout_below="@+id/relativeLayout4"
            android:layout_marginLeft="16dp"
            android:layout_marginRight="16dp"
            android:layout_marginTop="16dp"
            android:background="@drawable/sp_findpwd_et" >
 
            <EditText
                android:id="@+id/et_mobilefindpwd_newpwd"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_marginLeft="10dp"
                android:background="@null"
                android:singleLine="true"
                android:hint="@string/edt_newpassword" >
            </EditText>
        </RelativeLayout>
 
 
        <Button
            android:id="@+id/btn_mobilefindpwd_submit"
            android:layout_width="match_parent"
            android:layout_height="45dp"
            android:layout_alignParentLeft="true"
            android:layout_marginLeft="16dp"
            android:layout_marginRight="16dp"
            android:layout_below="@+id/relativeLayout5"
            android:layout_marginTop="20dp"
            android:background="@drawable/sp_post"
            android:text="@string/btn_submit"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:textColor="#FFFFFF" />
 
        <Button
            android:id="@+id/btn_mobilefindpwd_validatecode"
            android:layout_width="100dp"
            android:layout_height="45dp"
            android:layout_alignRight="@+id/relativeLayout2"
            android:layout_alignTop="@+id/relativeLayout4"
            android:background="@drawable/sp_get_code"
            android:paddingLeft="5dp"
            android:paddingRight="5dp"
            android:text="@string/btn_validatecode"
            android:textColor="#FFFFFF"
            android:textSize="15dp" />
 
        <TextView
            android:id="@+id/cs_service"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/btn_mobilefindpwd_submit"
            android:layout_below="@+id/btn_mobilefindpwd_submit"
            android:layout_marginTop="18dp"
            android:clickable="true"
            android:text="@string/cs_service"
            android:textColor="#EA8367"
            android:textAppearance="?android:attr/textAppearanceMedium" />
 
    </RelativeLayout>
 
</ScrollView>