lmw
2023-06-20 7e4a923b472a1ffb9d6deeb80302551ba4178ca3
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
 
    android:orientation="vertical"
    android:background="@color/white"
    android:layout_height="match_parent">
 
    <include layout="@layout/include_login_pwd_no_tip"/>
 
    <LinearLayout
        android:id="@+id/ll_login_pwd"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="12dp"
        android:layout_marginEnd="12dp"
        android:orientation="vertical">
 
        <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="50dp">
 
            <TextView
                android:id="@+id/tv_view_hint1"
                android:layout_width="70dp"
                android:layout_height="match_parent"
                android:gravity="center_vertical"
                android:text="再次输入"
                android:textColor="#ff333333"
                android:textSize="14sp" />
 
            <EditText
                android:id="@+id/et_login_pwd_repeat"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_toRightOf="@+id/tv_view_hint1"
                android:background="@color/white"
                android:hint="请再次输入新密码"
                android:inputType="textPassword"
                android:maxLength="18"
                android:textColor="@color/black"
                android:textSize="14sp" />
 
            <ImageView
                android:id="@+id/iv_eye_repeat"
                android:layout_width="18dp"
                android:layout_height="match_parent"
                android:layout_alignParentEnd="true"
                android:layout_centerHorizontal="true"
                android:src="@drawable/select_eye" />
 
        </RelativeLayout>
 
        <include layout="@layout/include_line" />
 
    </LinearLayout>
 
 
    <TextView
        android:id="@+id/tv_sure"
        android:layout_width="match_parent"
        android:text="确定"
        android:textColor="#ffffffff"
        android:gravity="center"
        android:layout_marginTop="90dp"
        android:layout_marginBottom="24dp"
        android:layout_marginStart="12dp"
        android:layout_marginEnd="12dp"
        android:background="@drawable/bg_login"
        android:textSize="14sp"
        android:layout_height="40dp"/>
 
</LinearLayout>