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

56 lines
2.1 KiB
XML
Raw Normal View History

2021-03-04 21:18:38 +01:00
<?xml version="1.0" encoding="utf-8"?>
<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"
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" />
<fragment
android:id="@+id/nav_konsole"
android:name="de.jg_cody.Teraplex.ui.Konsole.KonsoleFragment"
2021-05-02 19:30:26 +02:00
android:label="@string/menu_konsole"
tools:layout="@layout/fragment_konsole" />
2021-03-04 21:18:38 +01:00
<fragment
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"
tools:layout="@layout/fragment_einstellungen" />
2021-03-04 21:18:38 +01:00
<fragment
android:id="@+id/nav_kueche"
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"
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"
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
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>