PlayerAndroid/app/src/main/res/navigation/settings_graph.xml

133 lines
5.8 KiB
XML
Raw Normal View History

2020-07-24 18:28:15 +00:00
<?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"
app:startDestination="@id/mainSettingsFragment">
<fragment
android:id="@+id/mainSettingsFragment"
android:name="code.name.monkey.retromusic.fragments.settings.MainSettingsFragment"
2020-07-28 19:18:34 +00:00
android:label="Settings"
2020-07-24 18:28:15 +00:00
tools:layout="@layout/fragment_main_settings">
2020-07-28 19:18:34 +00:00
2020-07-24 18:28:15 +00:00
<action
android:id="@+id/action_mainSettingsFragment_to_themeSettingsFragment"
app:destination="@id/themeSettingsFragment"
app:enterAnim="@anim/retro_fragment_open_enter"
app:exitAnim="@anim/retro_fragment_open_exit"
app:popEnterAnim="@anim/retro_fragment_close_enter"
app:popExitAnim="@anim/retro_fragment_close_exit" />
2020-08-11 18:29:44 +00:00
2020-07-24 18:28:15 +00:00
<action
android:id="@+id/action_mainSettingsFragment_to_imageSettingFragment"
app:destination="@id/imageSettingFragment"
app:enterAnim="@anim/retro_fragment_open_enter"
app:exitAnim="@anim/retro_fragment_open_exit"
app:popEnterAnim="@anim/retro_fragment_close_enter"
app:popExitAnim="@anim/retro_fragment_close_exit" />
2020-08-11 18:29:44 +00:00
2020-07-24 18:28:15 +00:00
<action
android:id="@+id/action_mainSettingsFragment_to_nowPlayingSettingsFragment"
app:destination="@id/nowPlayingSettingsFragment"
app:enterAnim="@anim/retro_fragment_open_enter"
app:exitAnim="@anim/retro_fragment_open_exit"
app:popEnterAnim="@anim/retro_fragment_close_enter"
app:popExitAnim="@anim/retro_fragment_close_exit" />
2020-08-11 18:29:44 +00:00
2020-07-24 18:28:15 +00:00
<action
android:id="@+id/action_mainSettingsFragment_to_audioSettings"
app:destination="@id/audioSettings"
app:enterAnim="@anim/retro_fragment_open_enter"
app:exitAnim="@anim/retro_fragment_open_exit"
app:popEnterAnim="@anim/retro_fragment_close_enter"
app:popExitAnim="@anim/retro_fragment_close_exit" />
2020-08-11 18:29:44 +00:00
2020-07-24 18:28:15 +00:00
<action
android:id="@+id/action_mainSettingsFragment_to_otherSettingsFragment"
app:destination="@id/otherSettingsFragment"
app:enterAnim="@anim/retro_fragment_open_enter"
app:exitAnim="@anim/retro_fragment_open_exit"
app:popEnterAnim="@anim/retro_fragment_close_enter"
app:popExitAnim="@anim/retro_fragment_close_exit" />
2020-08-11 18:29:44 +00:00
2020-07-24 18:28:15 +00:00
<action
android:id="@+id/action_mainSettingsFragment_to_personalizeSettingsFragment"
2020-08-11 18:29:44 +00:00
app:destination="@id/personalizeSettingsFragment"
app:enterAnim="@anim/retro_fragment_open_enter"
app:exitAnim="@anim/retro_fragment_open_exit"
app:popEnterAnim="@anim/retro_fragment_close_enter"
2020-08-11 18:29:44 +00:00
app:popExitAnim="@anim/retro_fragment_close_exit" />
2020-07-24 18:28:15 +00:00
<action
android:id="@+id/action_mainSettingsFragment_to_notificationSettingsFragment"
app:destination="@id/notificationSettingsFragment"
app:enterAnim="@anim/retro_fragment_open_enter"
app:exitAnim="@anim/retro_fragment_open_exit"
app:popEnterAnim="@anim/retro_fragment_close_enter"
app:popExitAnim="@anim/retro_fragment_close_exit" />
2020-07-24 18:32:28 +00:00
<action
android:id="@+id/action_mainSettingsFragment_to_aboutActivity"
2020-08-13 08:24:36 +00:00
app:destination="@id/aboutActivity"
app:enterAnim="@anim/retro_fragment_open_enter"
app:exitAnim="@anim/retro_fragment_open_exit"
app:launchSingleTop="true"
app:popEnterAnim="@anim/retro_fragment_close_enter"
app:popExitAnim="@anim/retro_fragment_close_exit" />
2021-10-09 08:28:21 +00:00
<action
android:id="@+id/action_mainSettingsFragment_to_backupFragment"
app:destination="@id/backup_fragment"
app:enterAnim="@anim/retro_fragment_open_enter"
app:exitAnim="@anim/retro_fragment_open_exit"
app:launchSingleTop="true"
app:popEnterAnim="@anim/retro_fragment_close_enter"
app:popExitAnim="@anim/retro_fragment_close_exit" />
2020-07-24 18:28:15 +00:00
</fragment>
<fragment
android:id="@+id/audioSettings"
android:name="code.name.monkey.retromusic.fragments.settings.AudioSettings"
2020-07-28 19:18:34 +00:00
android:label="Audio" />
2020-07-24 18:28:15 +00:00
<fragment
android:id="@+id/imageSettingFragment"
android:name="code.name.monkey.retromusic.fragments.settings.ImageSettingFragment"
2020-07-28 19:18:34 +00:00
android:label="Image" />
2020-07-24 18:28:15 +00:00
<fragment
android:id="@+id/notificationSettingsFragment"
android:name="code.name.monkey.retromusic.fragments.settings.NotificationSettingsFragment"
2020-07-28 19:18:34 +00:00
android:label="Notification" />
2020-07-24 18:28:15 +00:00
<fragment
android:id="@+id/nowPlayingSettingsFragment"
android:name="code.name.monkey.retromusic.fragments.settings.NowPlayingSettingsFragment"
2020-07-28 19:18:34 +00:00
android:label="Now Playing" />
2020-07-24 18:28:15 +00:00
<fragment
android:id="@+id/otherSettingsFragment"
android:name="code.name.monkey.retromusic.fragments.settings.OtherSettingsFragment"
2020-07-28 19:18:34 +00:00
android:label="Other" />
2020-07-24 18:28:15 +00:00
<fragment
android:id="@+id/personalizeSettingsFragment"
android:name="code.name.monkey.retromusic.fragments.settings.PersonalizeSettingsFragment"
2020-07-28 19:18:34 +00:00
android:label="Personalize" />
2020-07-24 18:28:15 +00:00
<fragment
android:id="@+id/themeSettingsFragment"
android:name="code.name.monkey.retromusic.fragments.settings.ThemeSettingsFragment"
2020-07-28 19:18:34 +00:00
android:label="Look &amp; Feel" />
2020-07-24 18:32:28 +00:00
2020-08-11 18:29:44 +00:00
<fragment
2020-07-24 18:32:28 +00:00
android:id="@+id/aboutActivity"
2020-08-11 18:29:44 +00:00
android:name="code.name.monkey.retromusic.fragments.about.AboutFragment"
android:label="About" />
2020-07-24 18:32:28 +00:00
2021-10-09 08:28:21 +00:00
<fragment
android:id="@+id/backup_fragment"
android:name="code.name.monkey.retromusic.fragments.backup.BackupFragment"
android:label="About" />
2020-07-24 18:28:15 +00:00
</navigation>