Added the ability to sort items in the playlist catalogue

This commit is contained in:
antonio 2022-03-24 22:22:53 +01:00
parent 3eee78ad4e
commit f3f3c696f3
5 changed files with 69 additions and 0 deletions

View file

@ -14,6 +14,9 @@ public class Playlist implements Parcelable {
public static final String ALL = "ALL";
public static final String DOWNLOADED = "DOWNLOADED";
public static final String ORDER_BY_NAME = "ORDER_BY_NAME";
public static final String ORDER_BY_RANDOM = "ORDER_BY_RANDOM";
@NonNull
@PrimaryKey
@ColumnInfo(name = "id")