wancms_activity_trumpet_l.xml
3.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
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:background="@color/tranparent_helf">
<LinearLayout
android:layout_width="400dp"
android:layout_height="270dp"
android:orientation="vertical"
android:layout_centerInParent="true"
android:background="@drawable/round_rad5_bg"
android:backgroundTint="#F2F2F2">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="40dp">
<TextView
android:id="@+id/trumpet_finish"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_centerVertical="true"
android:layout_alignParentRight="true"
android:text="切换账号"
android:textColor="#2ACBAF"
android:textSize="12sp" />
<TextView
android:id="@+id/trumpet_username"
android:layout_width="wrap_content"
android:layout_marginLeft="10dp"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:textStyle="bold"
android:text="username"
android:textColor="@color/black"
android:textSize="13sp" />
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:layout_alignParentBottom="true"
android:background="#f2f3f7" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp">
<TextView
android:id="@+id/trumpet_choice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="选择小号进入游戏"
android:textColor="#333333"
android:textSize="12sp" />
<Button
android:id="@+id/trumpet_add"
android:layout_width="70dp"
android:layout_height="22dp"
android:layout_centerVertical="true"
android:layout_alignParentRight="true"
android:background="#2ACBAF"
android:text="添加小号"
android:textSize="12sp"
android:textColor="@color/common_white" />
</RelativeLayout>
<ListView
android:id="@+id/trumpet_listview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@null"
android:dividerHeight="0dp"
tools:listitem="@layout/ttw_trumpet_list"
android:layout_marginBottom="15dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_below="@+id/trumpet_re1">
</ListView>
</LinearLayout>
</RelativeLayout>