2020-07-24 23:58:15 +05:30
|
|
|
<?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"
|
2020-08-11 23:59:44 +05:30
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/library_graph"
|
|
|
|
app:startDestination="@id/action_home">
|
2020-07-24 23:58:15 +05:30
|
|
|
|
|
|
|
<fragment
|
2020-07-29 00:48:34 +05:30
|
|
|
android:id="@+id/action_album"
|
2020-07-24 23:58:15 +05:30
|
|
|
android:name="code.name.monkey.retromusic.fragments.albums.AlbumsFragment"
|
2020-08-13 13:54:36 +05:30
|
|
|
tools:layout="@layout/fragment_main_activity_recycler_view" />
|
2020-07-29 00:48:34 +05:30
|
|
|
|
2020-07-24 23:58:15 +05:30
|
|
|
<fragment
|
2020-07-29 00:48:34 +05:30
|
|
|
android:id="@+id/action_artist"
|
2020-07-24 23:58:15 +05:30
|
|
|
android:name="code.name.monkey.retromusic.fragments.artists.ArtistsFragment"
|
2020-08-11 23:59:44 +05:30
|
|
|
tools:layout="@layout/fragment_main_activity_recycler_view" />
|
2020-07-29 00:48:34 +05:30
|
|
|
|
2020-07-24 23:58:15 +05:30
|
|
|
<fragment
|
2020-07-29 00:48:34 +05:30
|
|
|
android:id="@+id/action_song"
|
2020-07-24 23:58:15 +05:30
|
|
|
android:name="code.name.monkey.retromusic.fragments.songs.SongsFragment"
|
2020-08-11 23:59:44 +05:30
|
|
|
tools:layout="@layout/fragment_main_activity_recycler_view" />
|
2020-07-29 00:48:34 +05:30
|
|
|
|
2020-07-24 23:58:15 +05:30
|
|
|
<fragment
|
2020-07-29 00:48:34 +05:30
|
|
|
android:id="@+id/action_genre"
|
2020-07-24 23:58:15 +05:30
|
|
|
android:name="code.name.monkey.retromusic.fragments.genres.GenresFragment"
|
2020-08-11 23:59:44 +05:30
|
|
|
tools:layout="@layout/fragment_main_activity_recycler_view" />
|
2020-07-29 00:48:34 +05:30
|
|
|
|
2020-07-24 23:58:15 +05:30
|
|
|
<fragment
|
2020-07-29 00:48:34 +05:30
|
|
|
android:id="@+id/action_playlist"
|
2020-07-24 23:58:15 +05:30
|
|
|
android:name="code.name.monkey.retromusic.fragments.playlists.PlaylistsFragment"
|
2020-08-11 23:59:44 +05:30
|
|
|
tools:layout="@layout/fragment_main_activity_recycler_view" />
|
2020-07-30 19:41:19 +05:30
|
|
|
|
2020-07-29 00:48:34 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/action_playing_queue"
|
|
|
|
android:name="code.name.monkey.retromusic.fragments.queue.PlayingQueueFragment"
|
2020-08-11 23:59:44 +05:30
|
|
|
tools:layout="@layout/fragment_main_activity_recycler_view" />
|
2020-07-30 19:41:19 +05:30
|
|
|
|
2020-07-29 00:48:34 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/action_folder"
|
|
|
|
android:name="code.name.monkey.retromusic.fragments.folder.FoldersFragment"
|
2020-08-11 23:59:44 +05:30
|
|
|
tools:layout="@layout/fragment_folder" />
|
2020-07-30 19:41:19 +05:30
|
|
|
|
2020-07-29 00:48:34 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/action_home"
|
2020-08-11 23:59:44 +05:30
|
|
|
android:name="code.name.monkey.retromusic.fragments.home.HomeFragment"
|
2020-08-13 13:54:36 +05:30
|
|
|
android:label=""
|
|
|
|
tools:layout="@layout/fragment_banner_home"/>
|
2020-08-12 03:01:09 +05:30
|
|
|
|
2020-07-24 23:58:15 +05:30
|
|
|
</navigation>
|