hydrology/app/src/main/res/navigation/mobile_navigation.xml

32 lines
1.1 KiB
XML

<?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.cmx.hydrology.ui.HomeFragment"
android:label="站点"
tools:layout="@layout/fragment_home" />
<fragment
android:id="@+id/navigation_msg"
android:name="com.cmx.hydrology.ui.MsgFragment"
android:label="消息"
tools:layout="@layout/fragment_msg" />
<fragment
android:id="@+id/navigation_map"
android:name="com.cmx.hydrology.ui.MapFragment"
android:label="地图"
tools:layout="@layout/fragment_map" />
<fragment
android:id="@+id/navigation_my"
android:name="com.cmx.hydrology.ui.MyFragment"
android:label="我的"
tools:layout="@layout/fragment_my" />
</navigation>