35 lines
1.4 KiB
XML
35 lines
1.4 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/nav_dashboard">
|
|
|
|
<fragment
|
|
android:id="@+id/nav_dashboard"
|
|
android:name="de.chrissthecoder.store.ui.dashboard.DashboardFragment"
|
|
android:label="@string/menu_dashboard"
|
|
tools:layout="@layout/fragment_dashboard" >
|
|
<action
|
|
android:id="@+id/action_nav_dashboard_to_shoppinglistLists"
|
|
app:destination="@id/shoppinglistLists" />
|
|
</fragment>
|
|
|
|
<fragment
|
|
android:id="@+id/nav_gallery"
|
|
android:name="de.chrissthecoder.store.ui.gallery.GalleryFragment"
|
|
android:label="@string/menu_gallery"
|
|
tools:layout="@layout/fragment_gallery" />
|
|
|
|
<fragment
|
|
android:id="@+id/nav_slideshow"
|
|
android:name="de.chrissthecoder.store.ui.slideshow.SlideshowFragment"
|
|
android:label="@string/menu_slideshow"
|
|
tools:layout="@layout/fragment_slideshow" />
|
|
|
|
<fragment
|
|
android:id="@+id/shoppinglistLists"
|
|
android:name="de.chrissthecoder.store.ui.dashboard.tabfragment.shoppinglist.ShoppinglistListsFragment"
|
|
android:label="@string/nav_shoppinglist"
|
|
tools:layout="@layout/fragment_shoppinglist_lists" />
|
|
</navigation> |