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-05-02 19:30:26 +02:00
|
|
|
android:label="@string/menu_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-05-02 19:30:26 +02:00
|
|
|
android:label="@string/menu_konsole"
|
2021-03-10 21:13:55 +01:00
|
|
|
tools:layout="@layout/fragment_konsole" />
|
|
|
|
|
2021-03-04 21:18:38 +01:00
|
|
|
<fragment
|
2021-05-21 22:02:20 +02:00
|
|
|
android:id="@+id/nav_einstellungen"
|
|
|
|
android:name="de.jg_cody.Teraplex.ui.Einstellungen.EinstellungenFragment"
|
2021-07-10 16:01:02 +02:00
|
|
|
android:label="@string/menu_settings"
|
2021-05-21 22:02:20 +02:00
|
|
|
tools:layout="@layout/fragment_einstellungen" />
|
2021-03-04 21:18:38 +01:00
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/nav_kueche"
|
2021-03-29 18:11:32 +02:00
|
|
|
android:name="de.jg_cody.Teraplex.ui.kueche.KuecheFragment"
|
2021-05-02 19:30:26 +02:00
|
|
|
android:label="@string/menu_küche"
|
2021-03-04 21:18:38 +01:00
|
|
|
tools:layout="@layout/fragment_kueche" />
|
|
|
|
|
|
|
|
<fragment
|
2021-05-02 19:30:26 +02:00
|
|
|
android:id="@+id/nav_zeitsteuerung"
|
|
|
|
android:name="de.jg_cody.Teraplex.ui.zeitsteuerung.ZeitsteuerungFragment"
|
|
|
|
android:label="@string/menu_zeitsteuerung"
|
|
|
|
tools:layout="@layout/fragment_zeitsteuerung" />
|
2021-03-04 21:18:38 +01:00
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/nav_schlafzimmer"
|
2021-03-29 18:11:32 +02:00
|
|
|
android:name="de.jg_cody.Teraplex.ui.Schlafzimmer.SchlafzimmerFragment"
|
2021-05-02 19:30:26 +02:00
|
|
|
android:label="@string/menu_schlafzimmer"
|
2021-03-04 21:18:38 +01:00
|
|
|
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-05-02 19:30:26 +02:00
|
|
|
android:label="@string/menu_flur"
|
2021-03-04 21:18:38 +01:00
|
|
|
tools:layout="@layout/fragment_flur" />
|
|
|
|
|
|
|
|
<fragment
|
2021-06-03 23:34:38 +02:00
|
|
|
android:id="@+id/nav_über"
|
2021-05-02 19:30:26 +02:00
|
|
|
android:name="de.jg_cody.Teraplex.ui.Credits.CreditsFragment"
|
2021-07-10 16:01:02 +02:00
|
|
|
android:label="@string/menu_about"
|
2021-05-02 19:30:26 +02:00
|
|
|
tools:layout="@layout/fragment_credits" />
|
2021-03-04 21:18:38 +01:00
|
|
|
</navigation>
|