admin
2022-05-07 4c7cde7ae5ed57335405459e47de4bbd2726c4ba
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
<?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="50dp"
    android:background="@color/navigation_bg_color"
    android:orientation="vertical">
 
    <RadioGroup
        android:id="@+id/rg_nav"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center_vertical"
 
        android:orientation="horizontal">
 
        <RadioButton
            android:id="@+id/rb_nav_recommend"
            style="@style/homeNavStyle"
            android:text="首页" />
 
        <RadioButton
            android:id="@+id/rb_nav_discover"
            style="@style/homeNavStyle"
            android:text="发现" />
 
        <FrameLayout
            android:id="@+id/fl_task"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1">
 
            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:src="@drawable/icon_nav_home_task"></ImageView>
 
 
        </FrameLayout>
 
 
        <RadioButton
            android:id="@+id/rb_nav_team"
            style="@style/homeNavStyle"
            android:text="团队" />
 
        <RadioButton
            android:id="@+id/rb_nav_mine"
            style="@style/homeNavStyle"
            android:text="我的" />
    </RadioGroup>
 
</LinearLayout>