mch_dialog_fragment_bangdingphone.xml
5.4 KB
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center">
<LinearLayout
android:layout_width="290dp"
android:layout_height="320dp"
android:background="@drawable/mch_cricle_10dp_bg_white"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="88dp"
android:gravity="center_vertical">
<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentStart="true"
android:layout_marginStart="100dp"
android:gravity="center_vertical"
android:text="绑定手机号"
android:textColor="#ff333333"
android:textSize="18dp" />
<TextView
android:id="@+id/mch_tv_login_close"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentStart="true"
android:layout_marginStart="242dp"
android:gravity="center_vertical"
android:text="上一步"
android:textColor="#ff507bff"
android:textSize="13dp" />
</RelativeLayout>
<RelativeLayout
android:layout_width="55dp"
android:layout_height="55dp"
android:layout_marginLeft="118dp"
android:layout_marginRight="117dp"
android:layout_marginBottom="10dp"
android:gravity="center_horizontal">
<ImageView
android:id="@+id/image"
android:layout_width="55dp"
android:layout_height="55dp"
android:src="@drawable/logo"/>
</RelativeLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:gravity="center_vertical"
android:orientation="horizontal">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/mch_et_bg"
android:gravity="center_vertical">
<EditText
android:id="@+id/edt_mc_platform_login_account"
android:layout_width="match_parent"
android:layout_height="35dp"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:hint="请输入手机号"
android:paddingLeft="10dp"
android:singleLine="true"
android:textColor="#8c8c8e"
android:textColorHint="#BFBFC2"
android:textSize="14dp"
android:background="#fbf9ff"
android:gravity="center"
android:maxLength="11"
android:imeOptions="flagNoExtractUi">
<requestFocus />
</EditText>
<View android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_alignBottom="@+id/edt_mc_platform_login_account"
android:background="#8c8c8e"/>
<RelativeLayout
android:id="@+id/rl_mch_login_acc_clear"
android:layout_width="33dp"
android:layout_height="33dp"
android:layout_alignParentRight="true"
android:visibility="gone">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@drawable/qingkong" />
</RelativeLayout>
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="12dp"
android:gravity="center">
<Button
android:id="@+id/btn_mc_platform_login"
android:layout_width="180dp"
android:layout_height="35dp"
android:background="@drawable/button"
android:text="获取验证码"
android:textColor="#fff"
android:textSize="14dp" />
</LinearLayout>
<!--最下面一行-->
</LinearLayout>
</RelativeLayout>