Added a new page dedicated to the favorites of artists, albums and songs

This commit is contained in:
CappielloAntonio 2022-01-15 17:07:29 +01:00
parent fc71341c73
commit 2a103909d1
7 changed files with 542 additions and 2 deletions

View file

@ -101,6 +101,12 @@
<action
android:id="@+id/action_libraryFragment_to_searchFragment"
app:destination="@id/searchFragment" />
<action
android:id="@+id/action_libraryFragment_to_albumListPageFragment"
app:destination="@id/albumListPageFragment" />
<action
android:id="@+id/action_libraryFragment_to_starredFragment"
app:destination="@id/starredFragment" />
</fragment>
<fragment
android:id="@+id/downloadFragment"
@ -257,6 +263,21 @@
android:id="@+id/action_artistListPageFragment_to_albumListPageFragment"
app:destination="@id/albumListPageFragment" />
</fragment>
<fragment
android:id="@+id/starredFragment"
android:name="com.cappielloantonio.play.ui.fragment.StarredFragment"
android:label="StarredFragment"
tools:layout="@layout/fragment_starred">
<action
android:id="@+id/action_starredFragment_to_songListPageFragment"
app:destination="@id/songListPageFragment" />
<action
android:id="@+id/action_starredFragment_to_albumListPageFragment"
app:destination="@id/albumListPageFragment" />
<action
android:id="@+id/action_starredFragment_to_artistListPageFragment"
app:destination="@id/artistListPageFragment" />
</fragment>
<fragment
android:id="@+id/playlistPageFragment"
android:name="com.cappielloantonio.play.ui.fragment.PlaylistPageFragment"