2023-05-02 20:52:56 +02:00
|
|
|
<?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"
|
2023-06-04 16:59:04 +02:00
|
|
|
android:id="@+id/nav_graph_compact"
|
2023-05-02 20:52:56 +02:00
|
|
|
app:startDestination="@id/schedule">
|
|
|
|
|
|
2023-06-04 16:59:04 +02:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/compact_overview"
|
|
|
|
|
android:name="com.denizk0461.weserplaner.fragment.CompactOverviewFragment"
|
|
|
|
|
android:label="CompactOverviewFragment"
|
|
|
|
|
tools:layout="@layout/fragment_compact_overview">
|
|
|
|
|
|
|
|
|
|
<action
|
|
|
|
|
android:id="@+id/action_compact_overview_to_schedule"
|
|
|
|
|
app:destination="@id/schedule" />
|
|
|
|
|
<action
|
|
|
|
|
android:id="@+id/action_compact_overview_to_canteen"
|
|
|
|
|
app:destination="@id/canteen" />
|
|
|
|
|
<action
|
|
|
|
|
android:id="@+id/action_compact_overview_to_settings"
|
|
|
|
|
app:destination="@id/settings" />
|
|
|
|
|
</fragment>
|
|
|
|
|
|
2023-05-02 20:52:56 +02:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/schedule"
|
2023-05-06 22:56:37 +02:00
|
|
|
android:name="com.denizk0461.weserplaner.fragment.EventFragment"
|
2023-05-02 20:52:56 +02:00
|
|
|
android:label="EventFragment"
|
|
|
|
|
tools:layout="@layout/fragment_event"/>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/canteen"
|
2023-05-06 22:56:37 +02:00
|
|
|
android:name="com.denizk0461.weserplaner.fragment.CanteenFragment"
|
2023-05-20 23:01:53 +02:00
|
|
|
android:label="CanteenFragment"
|
|
|
|
|
tools:layout="@layout/fragment_canteen"/>
|
2023-05-02 20:52:56 +02:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/settings"
|
2023-05-06 22:56:37 +02:00
|
|
|
android:name="com.denizk0461.weserplaner.fragment.SettingsFragment"
|
2023-05-02 20:52:56 +02:00
|
|
|
android:label="SettingsFragment"
|
|
|
|
|
tools:layout="@layout/fragment_settings"/>
|
2023-06-04 16:59:04 +02:00
|
|
|
|
2023-05-02 20:52:56 +02:00
|
|
|
</navigation>
|