fragment_hall_me.xml
2.28 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
<?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:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="@dimen/all_title_next_size"
android:orientation="horizontal"
android:background="#ffffff" >
<RadioGroup
android:id="@+id/layout_title"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="48dp"
android:layout_marginRight="48dp"
android:orientation="horizontal" >
<RadioButton
android:id="@+id/hall_rb_like"
style="@style/hall_text"
android:checked="true"
android:text="@string/hall_live" />
<RadioButton
android:id="@+id/hall_rb_hot"
style="@style/hall_text"
android:text="@string/hall_hot" />
<RadioButton
android:id="@+id/hall_rb_new"
style="@style/hall_text"
android:text="@string/hall_new" />
<RadioButton
android:id="@+id/hall_rb_star"
style="@style/hall_text"
android:text="@string/hall_star" />
</RadioGroup>
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_alignBottom="@+id/hall_sv"
android:background="#dcdcdc" />
<com.ivt.android.me.ui.myview.tabview.HallScllorTabView
android:id="@+id/hall_sv"
android:layout_width="match_parent"
android:layout_height="3dp"
android:layout_alignParentBottom="true"
android:layout_alignLeft="@+id/layout_title"
android:layout_alignRight="@+id/layout_title"
android:background="@null" />
</RelativeLayout>
<android.support.v4.view.ViewPager
android:id="@+id/hall_vp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000" >
</android.support.v4.view.ViewPager>
</LinearLayout>