xfgame_device_logined_account.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
<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_device_logined_account_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:orientation="vertical"
android:paddingLeft="@dimen/xfgame_space_bigger"
android:paddingRight="@dimen/xfgame_space_bigger"
android:paddingBottom="5dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/xfgame_xiafeng_device_login_account"
android:textColor="@color/xfgame_hy_main_color"
android:layout_gravity="center"
android:textSize="@dimen/xfgame_font_size_10"
android:layout_marginBottom="@dimen/xfgame_space_normal"/>
<ListView
android:id="@+id/xf_device_logined_account_lv"
android:layout_width="match_parent"
android:layout_height="170dp"
android:cacheColorHint="@android:color/transparent"
android:listSelector="@android:color/transparent"
android:divider="@null"/>
<TextView
android:id="@+id/xf_device_logined_account_tv"
android:layout_width="match_parent"
android:layout_height="170dp"
android:gravity="center"
android:textColor="@color/xfgame_333333"
android:text="@string/xfgame_without_device_login_account"
android:textSize="@dimen/xfgame_font_size_14"
android:visibility="gone" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:layout_marginTop="@dimen/xfgame_space_normal"
android:layout_marginBottom="@dimen/xfgame_space_normal">
<Button
android:id="@+id/xf_device_logined_find_pwd_bt"
style="@style/xfgame.button.xiafeng_zero"
android:layout_centerVertical="true"
android:text="@string/xfgame_find_pwd_sign"
android:layout_height="25dp"
android:layout_alignParentStart="true"/>
<LinearLayout
android:id="@+id/xf_device_logined_contact_gm_ll"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/xfgame_space_big"
android:layout_marginBottom="@dimen/xfgame_space_normal"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true">
<ImageView
android:layout_gravity="center"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:background="@drawable/xfgame_bar_gm"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/xfgame_hy_main_color"
android:textSize="@dimen/xfgame_font_size_10"
android:layout_gravity="center"
android:text="@string/xfgame_contact_gm_sign"/>
</LinearLayout>
</RelativeLayout>
</LinearLayout>
</LinearLayout>