qiezi_account_view.xml
2.6 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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff">
<RelativeLayout
android:id="@+id/bg_ll"
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_centerInParent="true"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:background="@drawable/qiezi_shape_quick_account_bg"
android:gravity="center_horizontal">
<TextView
android:id="@+id/bg_game_account"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="账号:3444444"
android:textColor="@android:color/black"
android:textSize="20dp" />
<TextView
android:id="@+id/bg_game_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/bg_game_account"
android:layout_centerHorizontal="true"
android:layout_marginBottom="20dp"
android:text="游戏名字"
android:textColor="#00CCFF"
android:textSize="20dp" />
<TextView
android:id="@+id/bg_game_pwd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/bg_game_account"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:text="密码:55555"
android:textColor="@android:color/black"
android:textSize="20dp" />
</RelativeLayout>
<ImageView
android:id="@+id/bg_logo"
android:layout_width="149dp"
android:layout_height="55dp"
android:layout_above="@+id/bg_ll"
android:layout_centerHorizontal="true"
android:layout_marginBottom="8dp"
android:background="@drawable/qiezi_logo" />
<TextView
android:id="@+id/bg_game_tips"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/bg_ll"
android:layout_centerHorizontal="true"
android:layout_marginTop="10dp"
android:gravity="center"
android:text="自动为您生成的游戏账号图片\n 为了防止账号丢失,建议绑定手机号"
android:textAlignment="center"
android:textColor="#00CCFF"
android:textSize="17dp" />
</RelativeLayout>