mirror of
https://github.com/CappielloAntonio/tempo.git
synced 2026-02-01 23:13:36 +00:00
Implementation of song/album/artist page list
This commit is contained in:
@@ -42,6 +42,12 @@
|
||||
<action
|
||||
android:id="@+id/action_homeFragment_to_songListPageFragment"
|
||||
app:destination="@id/songListPageFragment" />
|
||||
<action
|
||||
android:id="@+id/action_homeFragment_to_albumListPageFragment"
|
||||
app:destination="@id/albumListPageFragment" />
|
||||
<action
|
||||
android:id="@+id/action_homeFragment_to_artistListPageFragment"
|
||||
app:destination="@id/artistListPageFragment" />
|
||||
<action
|
||||
android:id="@+id/action_homeFragment_to_settingsFragment"
|
||||
app:destination="@id/settingsFragment" />
|
||||
@@ -181,6 +187,24 @@
|
||||
android:name="com.cappielloantonio.play.ui.fragment.SongListPageFragment"
|
||||
android:label="SongListPageFragment"
|
||||
tools:layout="@layout/fragment_song_list_page" />
|
||||
<fragment
|
||||
android:id="@+id/albumListPageFragment"
|
||||
android:name="com.cappielloantonio.play.ui.fragment.AlbumListPageFragment"
|
||||
android:label="AlbumListPageFragment"
|
||||
tools:layout="@layout/fragment_album_list_page">
|
||||
<action
|
||||
android:id="@+id/action_albumListPageFragment_to_albumPageFragment"
|
||||
app:destination="@id/albumPageFragment" />
|
||||
</fragment>
|
||||
<fragment
|
||||
android:id="@+id/artistListPageFragment"
|
||||
android:name="com.cappielloantonio.play.ui.fragment.ArtistListPageFragment"
|
||||
android:label="ArtistListPageFragment"
|
||||
tools:layout="@layout/fragment_artist_list_page">
|
||||
<action
|
||||
android:id="@+id/action_artistListPageFragment_to_artistPageFragment"
|
||||
app:destination="@id/artistPageFragment" />
|
||||
</fragment>
|
||||
<fragment
|
||||
android:id="@+id/playlistPageFragment"
|
||||
android:name="com.cappielloantonio.play.ui.fragment.PlaylistPageFragment"
|
||||
|
||||
Reference in New Issue
Block a user