fragment_find.xml
3.02 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
<?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/color_bg"
android:clipToPadding="true"
android:fitsSystemWindows="true"
android:orientation="vertical">
<View
android:id="@+id/fake_status_bar"
android:layout_width="match_parent"
android:layout_height="@dimen/statusbar_view_height"
android:background="@color/colorPrimaryDark"
android:visibility="gone"/>
<RelativeLayout
android:id="@+id/controlBar"
android:layout_width="match_parent"
android:layout_height="@dimen/actionbar"
android:background="@color/colorPrimaryDark"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="@dimen/px_40"
android:paddingRight="@dimen/px_40">
<ImageView
android:id="@+id/fr_find_img_search"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:src="@mipmap/search_logo" />
<RadioGroup
android:id="@+id/fr_find_rg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:orientation="horizontal">
<RadioButton
android:id="@+id/fr_find_rb_my_subscription"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/dy_tab_bg"
android:button="@null"
android:gravity="center" />
<RadioButton
android:id="@+id/fr_find_rb_find"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/find_tab_bg"
android:button="@null"
android:gravity="center" />
<!-- <!–<RadioButton–>
<!–android:id="@+id/fr_find_rb_rankinglist"–>
<!–android:layout_width="0dp"–>
<!–android:layout_height="match_parent"–>
<!–android:layout_weight="1"–>
<!–android:background="@drawable/phb_tab_bg"–>
<!–android:button="@null"–>
<!–android:gravity="center" />-->-->
</RadioGroup>
</RelativeLayout>
<FrameLayout
android:id="@+id/fr_find_content"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
</LinearLayout>