hch
2025-07-18 2a011653190c36e6fb1f790b3819a1d6b0744aef
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
153
154
155
156
157
<?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:id="@+id/change_pwd_ll"
    android:background="@color/background"
    android:orientation="vertical" >
 
    <RelativeLayout
        android:id="@+id/title_layout"
        android:layout_width="match_parent"
        android:layout_height="45dp"
        android:background="@color/white" >
 
        <ImageView
            android:id="@+id/mImageTitleBack"
            android:layout_width="30dp"
            android:layout_height="30dp"
            android:layout_centerVertical="true"
            android:layout_marginLeft="8dp"
            android:padding="5dp"
            android:src="@drawable/mg_ic_toolbar_back" />
 
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:text="修改密码"
            android:textColor="@color/text_4c"
            android:textSize="17sp" />
    </RelativeLayout>
 
    <View
        android:layout_width="match_parent"
        android:layout_height="0.6dp"
        android:background="@color/mg_line" />
 
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scrollbars="none" >
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="30dp"
            android:layout_marginRight="30dp"
            android:paddingBottom="30dp"
            android:orientation="vertical" >
 
            <TextView
                android:id="@+id/fragment_changepwd_account_tip_tv"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginBottom="15dp"
                android:layout_marginTop="15dp"
                android:text="@string/your_account_is"
                android:textColor="@color/light_black"
                android:textSize="15sp" />
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="当前密码"
                android:textColor="@color/light_black"
                android:textSize="15sp" />
 
            <EditText
                android:id="@+id/fragment_changepwd_current_pwd_ed"
                android:layout_width="match_parent"
                android:layout_height="40dp"
                android:background="@color/white2"
                android:gravity="center_vertical"
                android:hint="请输入6-20位字母和数字"
                android:inputType="textPassword"
                android:maxLength="20"
                android:paddingLeft="5dp"
                android:singleLine="true"
                android:textColor="@color/light_black"
                android:textColorHint="@color/light_black2"
                android:textSize="13sp" />
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="10dp"
                android:text="新密码"
                android:textColor="@color/light_black"
                android:textSize="15sp" />
 
            <EditText
                android:id="@+id/fragment_changepwd_new_pwd_ed"
                android:layout_width="match_parent"
                android:layout_height="40dp"
                android:background="@color/white2"
                android:gravity="center_vertical"
                android:hint="请输入6-20位字母和数字"
                android:inputType="textPassword"
                android:maxLength="20"
                android:paddingLeft="5dp"
                android:singleLine="true"
                android:textColor="@color/light_black"
                android:textColorHint="@color/light_black2"
                android:textSize="13sp" />
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="10dp"
                android:text="确认新密码"
                android:textColor="@color/light_black"
                android:textSize="15sp" />
 
            <EditText
                android:id="@+id/fragment_changepwd_confirm_new_pwd_ed"
                android:layout_width="match_parent"
                android:layout_height="40dp"
                android:background="@color/white2"
                android:gravity="center_vertical"
                android:hint="请输入6-20位字母和数字"
                android:inputType="textPassword"
                android:maxLength="20"
                android:paddingLeft="5dp"
                android:singleLine="true"
                android:textColor="@color/light_black"
                android:textColorHint="@color/light_black2"
                android:textSize="13sp" />
 
             <LinearLayout
                android:id="@+id/fragment_changepwd_submit_btn"
                android:layout_width="match_parent"
                android:layout_height="45dp"
                android:layout_marginTop="15dp"
                android:background="@drawable/drawable_exit_account_button"
                android:gravity="center"
                android:orientation="horizontal"
                android:paddingBottom="8dp"
                android:paddingTop="8dp" >
 
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="提  交"
                    android:textColor="@color/white"
                    android:textSize="20sp" />
            </LinearLayout>
           <!-- <Button
                android:id="@+id/fragment_changepwd_submit_btn"
                android:layout_width="match_parent"
                android:layout_height="45dp"
                android:layout_marginTop="20dp"
                android:background="@drawable/submit_selector" /> --> 
        </LinearLayout>
    </ScrollView>
 
</LinearLayout>