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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:r2="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/transparent" >
 
    <LinearLayout
        android:layout_width="280dp"
        android:layout_height="280dp"
        android:layout_centerInParent="true"
        android:background="@drawable/mr_container_bg"
        android:orientation="vertical"
        android:paddingLeft="16dp"
        android:paddingRight="16dp"
        android:paddingTop="10dp" >
 
        <com.mrcn.sdk.widget.MrTitleView
            android:id="@+id/r2_phone_register_title_back_img"
            android:layout_width="match_parent"
            android:layout_height="36dp"
            r2:closevisibility="false" />
 
        <com.mrcn.sdk.widget.MrEditTextView
            android:id="@+id/r2_phone_register_phone_et"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_marginTop="8dp"
            android:textColor="#cccccc"
            r2:buttonvisibility="true"
            r2:hint="@string/r2_register_phone_hint"
            r2:image="@drawable/mr_phone"
            r2:inputType="phone"
            r2:warning="@string/r2_register_phone_hint" />
 
        <com.mrcn.sdk.widget.MrEditTextView
            android:id="@+id/r2_phone_register_code_et"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:textColor="#cccccc"
            r2:hint="@string/r2_register_code_hint"
            r2:image="@drawable/mr_code"
            r2:inputType="number"
            r2:warning="@string/r2_register_code_hint" />
 
        <com.mrcn.sdk.widget.MrEditTextView
            android:id="@+id/r2_phone_register_pwd_et"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:textColor="#cccccc"
            r2:hint="@string/r2_register_pwd_hint"
            r2:image="@drawable/mr_pwd"
            r2:inputType="password"
            r2:warning="@string/r2_register_pwd_hint" />
 
        <com.mrcn.sdk.widget.MrTermView
            android:id="@+id/r2_phone_register_term"
            android:layout_width="match_parent"
            android:layout_height="12dp" />
 
        <Button
            android:id="@+id/r2_phone_register_btn"
            android:layout_width="200dp"
            android:layout_height="30dp"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="6dp"
            android:background="@drawable/mr_register_btn_bgimg"
            android:textSize="16sp"
            android:text="@string/r2_register"
            android:textColor="#FFFFFF" />
 
        <RelativeLayout
            android:layout_width="250dp"
            android:layout_height="match_parent"
            android:layout_gravity="center"
            android:layout_marginTop="1dp"
            android:gravity="right">
 
            <TextView
                android:id="@+id/r2_phone_register_other_ways_tv"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_toLeftOf="@+id/r2_phone_register_other_ways_iv"
                android:layout_toStartOf="@+id/r2_phone_register_other_ways_iv"
                android:text="@string/r2_register_other_ways"
                android:textColor="#98bf55"
                android:textSize="10sp" />
 
            <ImageView
                android:id="@+id/r2_phone_register_other_ways_iv"
                android:layout_width="21dp"
                android:layout_height="21dp"
                android:layout_alignParentEnd="true"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:scaleType="fitCenter"
                android:src="@drawable/mr_register" />
        </RelativeLayout>
    </LinearLayout>
 
</RelativeLayout>