mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 18:03:33 +00:00
Implementation of download navigation for artists and albums
This commit is contained in:
parent
c5f39cf9ee
commit
86d46f7537
16 changed files with 98 additions and 53 deletions
|
|
@ -18,7 +18,9 @@ public class Album implements Parcelable {
|
|||
public static final String RECENTLY_PLAYED = "RECENTLY_PLAYED";
|
||||
public static final String MOST_PLAYED = "MOST_PLAYED";
|
||||
public static final String RECENTLY_ADDED = "RECENTLY_ADDED";
|
||||
public static final String DOWNLOADED = "DOWNLOADED";
|
||||
public static final String STARRED = "STARRED";
|
||||
public static final String FROM_ARTIST = "FROM_ARTIST";
|
||||
|
||||
private String id;
|
||||
private String title;
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@ import java.util.List;
|
|||
public class Artist implements Parcelable {
|
||||
private static final String TAG = "Artist";
|
||||
|
||||
public static final String DOWNLOADED = "DOWNLOADED";
|
||||
public static final String STARRED = "STARRED";
|
||||
|
||||
private List<Genre> genres;
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ public class Song implements Parcelable {
|
|||
public static final String BY_YEAR = "BY_YEAR";
|
||||
public static final String STARRED = "STARRED";
|
||||
public static final String DOWNLOADED = "DOWNLOADED";
|
||||
public static final String FROM_ALBUM = "FROM_ALBUM";
|
||||
|
||||
private String id;
|
||||
private String title;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue