2021-03-04 21:18:38 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-03-10 21:13:55 +01:00
|
|
|
<navigation
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-03-04 21:18:38 +01:00
|
|
|
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"
|
2021-03-29 18:11:32 +02:00
|
|
|
android:name="de.jg_cody.Teraplex.ui.home.HomeFragment"
|
2021-03-10 21:13:55 +01:00
|
|
|
android:label="Home"
|
2021-03-04 21:18:38 +01:00
|
|
|
tools:layout="@layout/fragment_home" />
|
|
|
|
|
2021-03-10 21:13:55 +01:00
|
|
|
<fragment
|
|
|
|
android:id="@+id/nav_konsole"
|
2021-03-29 18:11:32 +02:00
|
|
|
android:name="de.jg_cody.Teraplex.ui.Konsole.KonsoleFragment"
|
2021-03-10 21:13:55 +01:00
|
|
|
android:label="Konsole"
|
|
|
|
tools:layout="@layout/fragment_konsole" />
|
|
|
|
|
2021-03-04 21:18:38 +01:00
|
|
|
<fragment
|
|
|
|
android:id="@+id/nav_badezimmer"
|
2021-03-29 18:11:32 +02:00
|
|
|
android:name="de.jg_cody.Teraplex.ui.badezimmer.BadezimmerFragment"
|
2021-03-04 21:18:38 +01:00
|
|
|
android:label="Badezimmer"
|
|
|
|
tools:layout="@layout/fragment_badezimmer" />
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/nav_kueche"
|
2021-03-29 18:11:32 +02:00
|
|
|
android:name="de.jg_cody.Teraplex.ui.kueche.KuecheFragment"
|
2021-03-04 21:18:38 +01:00
|
|
|
android:label="Küche"
|
|
|
|
tools:layout="@layout/fragment_kueche" />
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/nav_wohnzimmer"
|
2021-03-29 18:11:32 +02:00
|
|
|
android:name="de.jg_cody.Teraplex.ui.wohnzimmer.WohnzimmerFragment"
|
2021-03-04 21:18:38 +01:00
|
|
|
android:label="Wohnzimmer"
|
|
|
|
tools:layout="@layout/fragment_wohnzimmer" />
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/nav_schlafzimmer"
|
2021-03-29 18:11:32 +02:00
|
|
|
android:name="de.jg_cody.Teraplex.ui.Schlafzimmer.SchlafzimmerFragment"
|
2021-03-04 21:18:38 +01:00
|
|
|
android:label="Schlafzimmer"
|
|
|
|
tools:layout="@layout/fragment_schlafzimmer" />
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/nav_flur"
|
2021-03-29 18:11:32 +02:00
|
|
|
android:name="de.jg_cody.Teraplex.ui.Flur.FlurFragment"
|
2021-03-04 21:18:38 +01:00
|
|
|
android:label="Flur"
|
|
|
|
tools:layout="@layout/fragment_flur" />
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/nav_toilette"
|
2021-03-29 18:11:32 +02:00
|
|
|
android:name="de.jg_cody.Teraplex.ui.Toilette.ToiletteFragment"
|
2021-03-04 21:18:38 +01:00
|
|
|
android:label="Toilette"
|
|
|
|
tools:layout="@layout/fragment_toilette" />
|
|
|
|
</navigation>
|