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.

69 lines
2.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_listing"
android:name="com.cyb3rko.techniklogger.fragments.ListingFragment"
android:label="Einsätze"
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="childKey"
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="childKey"
app:argType="string"
android:defaultValue="" />
<argument
android:name="name"
app:argType="string"
android:defaultValue=""/>
<argument
android:name="location"
app:argType="string"
android:defaultValue=""/>
<argument
android:name="date"
app:argType="string"
android:defaultValue=""/>
<argument
android:name="time"
app:argType="string"
android:defaultValue=""/>
<argument
android:name="duration"
app:argType="string"
android:defaultValue=""/>
</fragment>
</navigation>