Added the ability to sort items in the genre catalogue

This commit is contained in:
antonio 2022-03-24 22:22:15 +01:00
parent e6b997bc35
commit 3eee78ad4e
5 changed files with 73 additions and 4 deletions

View file

@ -6,6 +6,9 @@ import android.os.Parcelable;
import androidx.annotation.NonNull;
public class Genre implements Parcelable {
public static final String ORDER_BY_NAME = "ORDER_BY_NAME";
public static final String ORDER_BY_RANDOM = "ORDER_BY_RANDOM";
private String id;
private String name;
private int songCount;