fancy_acclist.xml
3.5 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout
android:layout_width="320dp"
android:layout_height="300dp"
android:layout_gravity="center"
android:background="@drawable/guildnew_circleround" >
<ImageView
android:id="@+id/guild_back"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentTop="true"
android:layout_marginLeft="20dp"
android:layout_marginTop="20dp"
android:src="@drawable/guild_back_sel" />
<TextView
android:id="@+id/guildlogo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/guild_back"
android:layout_centerHorizontal="true"
android:text="账号列表"
android:textColor="#393936"
android:textSize="20sp" />
<RelativeLayout
android:id="@+id/bottomlayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_gravity="center"
android:visibility="invisible"
android:layout_marginBottom="8dp" >
<TextView
android:id="@+id/testbe"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="94dp"
android:text="如有疑问,请"
android:textColor="@color/guild_gray_bottom_text" />
<TextView
android:id="@+id/callcustomserver"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/testbe"
android:text="@string/guild_callcustom"
android:textColor="#f33" />
</RelativeLayout>
<TextView
android:id="@+id/bottomline"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_above="@id/bottomlayout"
android:layout_marginBottom="6dp"
android:background="@null" />
<ListView
android:id="@+id/list_item"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@id/bottomline"
android:layout_below="@id/guildlogo"
android:layout_marginBottom="10dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="20dp"
android:divider="@null"
android:dividerHeight="2dp" />
<TextView
android:id="@+id/list_item_null"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/bottomline"
android:layout_below="@id/guildlogo"
android:gravity="center"
android:text="暂无帐号绑定此手机"
android:textSize="20sp"
android:visibility="visible" />
</RelativeLayout>
</LinearLayout>