hch
2024-09-11 be24a6acd6abf8d86ab3b25d8be6d80f49f3dce3
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
<?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:background="#FEFFFF"
    android:orientation="vertical" >
    
    
    <RelativeLayout
        android:id="@+id/relativeLayout1"
        android:layout_width="match_parent"
        android:layout_height="48dp"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:background="@color/qr_color_fac000" >
 
        <ImageView
            android:id="@+id/img_findpwd_back"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:scaleType="center"
            android:background="@mipmap/cs_white_back" />
 
        <TextView
            android:id="@+id/title_text_find_pw"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="@string/super_pocket_games"
            android:textColor="#FFFFFF"
            android:textSize="22sp"
            />
    </RelativeLayout>
    
    <RelativeLayout
        android:id="@+id/ly_forget_username"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/relativeLayout1"
        android:layout_marginTop="25dp" >
 
        <TextView
            android:id="@+id/textView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/im_forget_name"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="17dp"
            android:text="@string/forget_username"
            android:textColor="#55C9BC"
            android:textSize="18dp" />
    
        <ImageView
            android:id="@+id/im_forget_name"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:src="@mipmap/cs_forget_username" />
 
    </RelativeLayout>
 
    <RelativeLayout
        android:id="@+id/cs_forget_password"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/ly_forget_username"
        android:layout_marginTop="37dp" >
    
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/im_forget_password"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="15dp"
            android:text="@string/forget_password"
            android:textColor="#EA7E5B"
            android:textSize="18dp" />
    
        <ImageView
            android:id="@+id/im_forget_password"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:src="@mipmap/cs_forgetpassword" />
    
    </RelativeLayout>
 
 
 
</LinearLayout>