fragment_hall.xml
2.79 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/activity_background"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/rlayout"
android:layout_width="match_parent"
android:layout_height="@dimen/all_title_bg_size"
android:background="@color/title_bg"
android:gravity="center_vertical"
android:paddingTop="20dip" >
<ImageView
android:id="@+id/hall_search_btn"
android:layout_width="wrap_content"
android:layout_height="48dip"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="5dp"
android:padding="10dip"
android:src="@drawable/hall_search" />
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
>
<TextView
android:id="@+id/hall_main_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/title_hall"
android:textColor="#FFFFFF"
android:textSize="@dimen/all_title_size" />
<TextView
android:id="@+id/hall_yule_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/title_yule"
android:layout_marginLeft="20dp"
android:layout_toRightOf="@+id/hall_main_tv"
android:textColor="#FFFFFF"
android:textSize="@dimen/all_title_size"
/>
</RelativeLayout>
<ImageView
android:id="@+id/hall_unread"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="6dp"
android:layout_marginTop="11dp"
android:layout_alignTop="@+id/hall_btn_chat"
android:src="@drawable/hall_ured"
android:visibility="gone"
/>
<ImageView
android:id="@+id/hall_btn_chat"
style="@style/title_btn"
android:layout_alignParentRight="true"
android:layout_marginRight="5dp"
android:src="@drawable/hall_msg" />
</RelativeLayout>
<FrameLayout
android:id="@+id/tab_hall"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
</FrameLayout >
</LinearLayout>