| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?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"
- app:startDestination="@id/homeFragment">
- <fragment
- android:id="@+id/homeFragment"
- android:name="com.sduduzog.slimlauncher.ui.main.HomeFragment"
- android:label="home_fragment"
- tools:layout="@layout/home_fragment">
- <action
- android:id="@+id/action_homeFragment_to_optionsFragment"
- app:destination="@id/optionsFragment" />
- <action
- android:id="@+id/action_homeFragment_to_notesFragment"
- app:destination="@id/notesFragment" />
- </fragment>
- <fragment
- android:id="@+id/optionsFragment"
- android:name="com.sduduzog.slimlauncher.ui.options.OptionsFragment"
- android:label="options_fragment"
- tools:layout="@layout/options_fragment" >
- <action
- android:id="@+id/action_optionsFragment_to_customiseAppsFragment"
- app:destination="@id/customiseAppsFragment" />
- </fragment>
- <fragment
- android:id="@+id/customiseAppsFragment"
- android:name="com.sduduzog.slimlauncher.ui.options.CustomiseAppsFragment"
- android:label="customise_apps_fragment"
- tools:layout="@layout/customise_apps_fragment" >
- <action
- android:id="@+id/action_customiseAppsFragment_to_addAppFragment"
- app:destination="@id/addAppFragment" />
- </fragment>
- <fragment
- android:id="@+id/addAppFragment"
- android:name="com.sduduzog.slimlauncher.ui.options.AddAppFragment"
- android:label="add_app_fragment"
- tools:layout="@layout/add_app_fragment" />
- <fragment
- android:id="@+id/noteFragment"
- android:name="com.sduduzog.slimlauncher.ui.main.NoteFragment"
- android:label="note_fragment"
- tools:layout="@layout/note_fragment" />
- <fragment
- android:id="@+id/notesFragment"
- android:name="com.sduduzog.slimlauncher.ui.main.NotesFragment"
- android:label="notes_fragment"
- tools:layout="@layout/notes_fragment" >
- <action
- android:id="@+id/action_notesFragment_to_noteFragment"
- app:destination="@id/noteFragment" />
- </fragment>
- </navigation>
|