xfgame_message_login.xml
3.8 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
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="@dimen/xfgame_layout_width"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/xfgame_base_background"
android:orientation="vertical">
<com.xuanfeng.sdk.ui.weight.SDKBackTitleBar
android:id="@+id/xf_msg_login_btb"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/xfgame_space_normal" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical"
android:paddingLeft="40dp"
android:paddingTop="10dp"
android:paddingRight="40dp"
android:paddingBottom="5dp">
<FrameLayout style="@style/xfgame.input.downline">
<LinearLayout style="@style/xfgame.input.xiafeng">
<EditText
android:id="@+id/xf_msg_login_phone_number_et"
style="@style/xfgame.input.edittext"
android:hint="@string/xfgame_phone_number_hint" />
<RelativeLayout
android:id="@+id/xf_msg_login_cls"
style="@style/xfgame.image.right_cls_icon_rl"
android:visibility="invisible">
<ImageView
style="@style/xfgame.image.right_cls_icon"
android:background="@drawable/xfgame_cls" />
</RelativeLayout>
</LinearLayout>
<ImageView
style="@style/xfgame.image.left_icon"
android:background="@drawable/xfgame_bind_phone" />
</FrameLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/xfgame_space_normal"
android:orientation="horizontal">
<FrameLayout
style="@style/xfgame.input.downline"
android:layout_width="0dp"
android:layout_marginEnd="@dimen/xfgame_space_normal"
android:layout_weight="2">
<LinearLayout style="@style/xfgame.input.xiafeng">
<EditText
android:id="@+id/xf_msg_login_verifycode_et"
style="@style/xfgame.input.edittext"
android:hint="@string/xfgame_verification_code_hint" />
</LinearLayout>
<ImageView
style="@style/xfgame.image.left_icon"
android:background="@drawable/xfgame_phone_code" />
</FrameLayout>
<Button
android:id="@+id/xf_msg_login_get_verifycode_bt"
style="@style/xfgame.button.xiafeng_phone_code"
android:layout_width="0dp"
android:layout_gravity="center"
android:layout_weight="1"
android:text="@string/xfgame_get_verification_code" />
</LinearLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/xfgame_space_normal"
android:layout_marginBottom="@dimen/xfgame_space_normal"
android:orientation="horizontal">
<Button
android:id="@+id/xf_msg_login_login_bt"
style="@style/xfgame.button.hoyo_zero"
android:layout_width="match_parent"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/xfgame_login" />
</RelativeLayout>
</LinearLayout>
</LinearLayout>