You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
3.3 KiB
XML

<?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/mobile_navigation"
app:startDestination="@+id/navigation_listing">
<fragment
android:id="@+id/navigation_years"
android:name="com.cyb3rko.techniklogger.fragments.YearsFragment"
android:label="Schuljahre"
tools:layout="@layout/fragment_years" />
<fragment
android:id="@+id/navigation_listing"
android:name="com.cyb3rko.techniklogger.fragments.ListingFragment"
tools:layout="@layout/fragment_listing">
<action
android:id="@+id/navigateToProject"
app:destination="@id/navigation_project" />
<action
android:id="@+id/navigateToPusher"
app:destination="@id/navigation_einsatz_pusher" />
</fragment>
<fragment
android:id="@+id/navigation_project"
android:name="com.cyb3rko.techniklogger.fragments.ProjectFragment"
android:label="Einsatz"
tools:layout="@layout/fragment_project" >
<argument
android:name="objectId"
app:argType="string"
android:defaultValue="" />
<action
android:id="@+id/navigateToListing"
app:destination="@id/navigation_listing" />
</fragment>
<fragment
android:id="@+id/navigation_einsatz_pusher"
android:name="com.cyb3rko.techniklogger.fragments.EinsatzPusherFragment"
android:label="Einsatz bearbeiten"
tools:layout="@layout/fragment_einsatz_pusher">
<action
android:id="@+id/navigateToListing"
app:destination="@id/navigation_listing" />
<argument
android:name="date"
app:argType="string"
android:defaultValue="" />
<argument
android:name="duration"
app:argType="string"
android:defaultValue="" />
<argument
android:name="location"
app:argType="string"
android:defaultValue="" />
<argument
android:name="name"
app:argType="string"
android:defaultValue="" />
<argument
android:name="objectId"
app:argType="string"
android:defaultValue="" />
<argument
android:name="time"
app:argType="string"
android:defaultValue="" />
</fragment>
<fragment
android:id="@+id/navigation_manage_techniker"
android:name="com.cyb3rko.techniklogger.fragments.ManageTechnikerFragment"
android:label="Techniker verwalten"
tools:layout="@layout/fragment_manage_techniker" />
<fragment
android:id="@+id/navigation_about"
android:name="com.cyb3rko.techniklogger.fragments.AboutFragment"
android:label="Über" />
<fragment
android:id="@+id/navigation_about_icons"
android:name="com.cyb3rko.techniklogger.fragments.AboutIconsFragment"
android:label="Über" />
<fragment
android:id="@+id/navigation_about_animations"
android:name="com.cyb3rko.techniklogger.fragments.AboutAnimationsFragment"
android:label="Über" />
</navigation>