49 lines
1.8 KiB
XML
49 lines
1.8 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/nav_home">
|
||
|
|
||
|
<fragment
|
||
|
android:id="@+id/nav_home"
|
||
|
android:name="de.jg_cody.Terraplex.ui.home.HomeFragment"
|
||
|
android:label="@string/menu_home"
|
||
|
tools:layout="@layout/fragment_home" />
|
||
|
|
||
|
<fragment
|
||
|
android:id="@+id/nav_badezimmer"
|
||
|
android:name="de.jg_cody.Terraplex.ui.badezimmer.BadezimmerFragment"
|
||
|
android:label="Badezimmer"
|
||
|
tools:layout="@layout/fragment_badezimmer" />
|
||
|
|
||
|
<fragment
|
||
|
android:id="@+id/nav_kueche"
|
||
|
android:name="de.jg_cody.Terraplex.ui.kueche.KuecheFragment"
|
||
|
android:label="Küche"
|
||
|
tools:layout="@layout/fragment_kueche" />
|
||
|
|
||
|
<fragment
|
||
|
android:id="@+id/nav_wohnzimmer"
|
||
|
android:name="de.jg_cody.Terraplex.ui.wohnzimmer.WohnzimmerFragment"
|
||
|
android:label="Wohnzimmer"
|
||
|
tools:layout="@layout/fragment_wohnzimmer" />
|
||
|
|
||
|
<fragment
|
||
|
android:id="@+id/nav_schlafzimmer"
|
||
|
android:name="de.jg_cody.Terraplex.ui.Schlafzimmer.SchlafzimmerFragment"
|
||
|
android:label="Schlafzimmer"
|
||
|
tools:layout="@layout/fragment_schlafzimmer" />
|
||
|
|
||
|
<fragment
|
||
|
android:id="@+id/nav_flur"
|
||
|
android:name="de.jg_cody.Terraplex.ui.Flur.FlurFragment"
|
||
|
android:label="Flur"
|
||
|
tools:layout="@layout/fragment_flur" />
|
||
|
|
||
|
<fragment
|
||
|
android:id="@+id/nav_toilette"
|
||
|
android:name="de.jg_cody.Terraplex.ui.Toilette.ToiletteFragment"
|
||
|
android:label="Toilette"
|
||
|
tools:layout="@layout/fragment_toilette" />
|
||
|
</navigation>
|