| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?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" />
- </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" />
- <action
- android:id="@+id/action_optionsFragment_to_customiseQuickButtonsFragment"
- app:destination="@id/customiseQuickButtonsFragment" />
- </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/customiseQuickButtonsFragment"
- android:name="com.sduduzog.slimlauncher.ui.options.CustomizeQuickButtonsFragment"
- android:label="customise_quick_buttons_fragment"
- tools:layout="@layout/customize_quick_buttons_fragment" />
- </navigation>
|