client_Hale
2018-09-11 fa6e7662df0b4d134360c7c84ca1db192c8aa4fc
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:r2="http://schemas.android.com/apk/res-auto"
    android:layout_width="@dimen/user_center_detail_width"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@color/white">
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="@dimen/user_center_head_item_height"
        android:gravity="center_vertical">
 
        <RelativeLayout
            android:id="@+id/user_center_password_back"
            android:layout_width="30dp"
            android:layout_height="match_parent">
 
            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:src="@drawable/mr_user_center_back"/>
 
        </RelativeLayout>
 
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="@string/mr_user_center_password_title"
            android:textSize="@dimen/user_center_title"
            android:textColor="@color/user_center_common_title"/>
 
        <View
            android:layout_width="match_parent"
            android:layout_height="2px"
            android:layout_alignParentBottom="true"
            android:background="@color/user_center_divide_line"/>
 
    </RelativeLayout>
 
    <com.mrcn.sdk.widget.MrTextView
        android:id="@+id/r2_pwd_phone_et"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_marginTop="10dp"
        android:layout_marginRight="@dimen/user_center_content_item_margin_right"
        r2:buttonvisibility="true"
        r2:image="@drawable/mr_phone"/>
 
    <View
        android:layout_width="match_parent"
        android:layout_height="1px"
        android:layout_alignParentBottom="true"
        android:background="@color/user_center_divide_line"/>
 
    <com.mrcn.sdk.widget.MrEditTextView
        android:id="@+id/r2_pwd_code_et"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_marginTop="6dp"
        android:layout_marginRight="@dimen/user_center_content_item_margin_right"
        r2:hint="@string/r2_pwd_code_hint"
        r2:image="@drawable/mr_code"
        r2:inputType="number" />
 
    <View
        android:layout_width="match_parent"
        android:layout_height="1px"
        android:layout_alignParentBottom="true"
        android:background="@color/user_center_divide_line"/>
 
    <com.mrcn.sdk.widget.MrEditTextView
        android:id="@+id/r2_pwd_resetpwd_et"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_marginRight="@dimen/user_center_content_item_margin_right"
        android:layout_marginTop="6dp"
        r2:hint="@string/r2_pwd_resetpwd_hint"
        r2:image="@drawable/mr"
        r2:inputType="password" />
 
    <View
        android:layout_width="match_parent"
        android:layout_height="1px"
        android:layout_alignParentBottom="true"
        android:background="@color/user_center_divide_line"/>
 
    <Button
        android:id="@+id/r2_pwd_reset_btn"
        android:layout_width="match_parent"
        android:layout_height="@dimen/user_center_item_height"
        android:layout_marginLeft="15dp"
        android:layout_marginRight="15dp"
        android:layout_marginTop="10dp"
        android:background="@drawable/mr_corner_circle"
        android:text="@string/mr_user_center_confirm"
        android:textColor="@color/white" />
 
</LinearLayout>