2020-08-11 18:29:44 +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"
|
|
|
|
android:id="@+id/retro_graph"
|
|
|
|
app:startDestination="@id/libraryFragment">
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/genreDetailsFragment"
|
|
|
|
android:name="code.name.monkey.retromusic.fragments.genres.GenreDetailsFragment"
|
|
|
|
android:label="GenreDetailsFragment"
|
|
|
|
tools:layout="@layout/fragment_playlist_detail">
|
|
|
|
<argument
|
|
|
|
android:name="extra_genre"
|
|
|
|
app:argType="code.name.monkey.retromusic.model.Genre" />
|
|
|
|
</fragment>
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/playlistDetailsFragment"
|
|
|
|
android:name="code.name.monkey.retromusic.fragments.playlists.PlaylistDetailsFragment"
|
|
|
|
android:label="PlaylistDetailsFragment"
|
|
|
|
tools:layout="@layout/fragment_playlist_detail">
|
|
|
|
<argument
|
|
|
|
android:name="extra_playlist"
|
2020-08-20 09:52:38 +00:00
|
|
|
app:argType="code.name.monkey.retromusic.db.PlaylistWithSongs" />
|
2020-08-11 18:29:44 +00:00
|
|
|
</fragment>
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/albumDetailsFragment"
|
|
|
|
android:name="code.name.monkey.retromusic.fragments.albums.AlbumDetailsFragment"
|
|
|
|
android:label="AlbumDetailsFragment"
|
2020-08-11 22:20:22 +00:00
|
|
|
tools:layout="@layout/fragment_album_details">
|
2020-08-11 18:29:44 +00:00
|
|
|
<argument
|
|
|
|
android:name="extra_album_id"
|
2020-09-17 21:25:41 +00:00
|
|
|
app:argType="long" />
|
2020-08-11 18:29:44 +00:00
|
|
|
</fragment>
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/artistDetailsFragment"
|
|
|
|
android:name="code.name.monkey.retromusic.fragments.artists.ArtistDetailsFragment"
|
|
|
|
android:label="ArtistDetailsFragment"
|
|
|
|
tools:layout="@layout/fragment_artist_details">
|
|
|
|
<argument
|
|
|
|
android:name="extra_artist_id"
|
2020-09-17 21:25:41 +00:00
|
|
|
app:argType="long" />
|
2020-08-11 18:29:44 +00:00
|
|
|
</fragment>
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/libraryFragment"
|
|
|
|
android:name="code.name.monkey.retromusic.fragments.library.LibraryFragment"
|
2020-08-13 08:24:36 +00:00
|
|
|
android:label=""
|
2020-09-02 15:20:38 +00:00
|
|
|
tools:layout="@layout/fragment_library" />
|
2020-08-11 18:29:44 +00:00
|
|
|
|
2020-08-13 08:24:36 +00:00
|
|
|
<fragment
|
|
|
|
android:id="@+id/detailListFragment"
|
|
|
|
android:name="code.name.monkey.retromusic.fragments.DetailListFragment"
|
|
|
|
android:label="DetailListFragment">
|
|
|
|
<argument
|
|
|
|
android:name="type"
|
|
|
|
app:argType="integer" />
|
|
|
|
</fragment>
|
|
|
|
|
2020-08-11 18:29:44 +00:00
|
|
|
<fragment
|
|
|
|
android:id="@+id/searchFragment"
|
2020-08-11 18:58:14 +00:00
|
|
|
android:name="code.name.monkey.retromusic.fragments.search.SearchFragment"
|
2020-08-11 18:29:44 +00:00
|
|
|
android:label="SearchFragment"
|
|
|
|
tools:layout="@layout/fragment_search" />
|
|
|
|
|
2020-08-13 08:24:36 +00:00
|
|
|
<activity
|
|
|
|
android:id="@+id/settingsActivity"
|
|
|
|
android:name="code.name.monkey.retromusic.activities.SettingsActivity"
|
|
|
|
android:label="SettingsActivity" />
|
|
|
|
|
2020-09-12 19:39:46 +00:00
|
|
|
<activity
|
|
|
|
android:id="@+id/permissionFragment"
|
|
|
|
android:name="code.name.monkey.retromusic.activities.PermissionActivity"
|
|
|
|
android:label="PermissionFragment"
|
|
|
|
tools:layout="@layout/activity_permission" />
|
2020-08-11 18:29:44 +00:00
|
|
|
</navigation>
|