Added navigation graph and corresponding user preference for additional app layout option

This commit is contained in:
denizk0461
2023-06-04 16:59:04 +02:00
parent 26c89108bf
commit 6d1ab773dc
13 changed files with 117 additions and 9 deletions
@@ -0,0 +1,34 @@
<?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/nav_graph_detailed"
app:startDestination="@id/schedule">
<fragment
android:id="@+id/schedule"
android:name="com.denizk0461.weserplaner.fragment.EventFragment"
android:label="EventFragment"
tools:layout="@layout/fragment_event"/>
<fragment
android:id="@+id/exam_overview"
android:name="com.denizk0461.weserplaner.fragment.TaskOverviewFragment"
android:label="ExamOverviewFragment"
tools:layout="@layout/fragment_task_overview"/>
<fragment
android:id="@+id/canteen"
android:name="com.denizk0461.weserplaner.fragment.CanteenFragment"
android:label="CanteenFragment"
tools:layout="@layout/fragment_canteen"/>
<fragment
android:id="@+id/room_finder"
android:name="com.denizk0461.weserplaner.fragment.RoomFinderFragment"
android:label="RoomFinderFragment"
tools:layout="@layout/fragment_room_finder"/>
<fragment
android:id="@+id/settings"
android:name="com.denizk0461.weserplaner.fragment.SettingsFragment"
android:label="SettingsFragment"
tools:layout="@layout/fragment_settings"/>
</navigation>