Administrator
2021-11-09 5f50bd6ea5d5bdb7b8ea4d9e9a5851067b9aec1b
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
<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/mobile_navigation"
    app:startDestination="@+id/navigation_home">
 
    <fragment
        android:id="@+id/navigation_home"
        android:name="com.duqing.missions.ui.main.home.HomeFragment"
        android:label="@string/title_home"
        tools:layout="@layout/fragment_home" />
 
    <fragment
        android:id="@+id/navigation_hall"
        android:name="com.duqing.missions.ui.main.hall.HallFragment"
        android:label="@string/title_hall"
        tools:layout="@layout/layout_tab_viewpager" />
 
    <fragment
        android:id="@+id/navigation_dynamic"
        android:name="com.duqing.missions.ui.main.dynamic.DynamicFragment"
        android:label="@string/title_dynamic"
        tools:layout="@layout/layout_tab_viewpager" />
    <fragment
        android:id="@+id/navigation_mine"
        android:name="com.duqing.missions.ui.main.mine.MineFragment"
        android:label="@string/title_mine"
        tools:layout="@layout/fragment_mine" />
</navigation>