Genres tab

This commit is contained in:
Eugene Cheung 2017-09-02 19:54:57 -04:00
commit 944b5fc1fa
No known key found for this signature in database
GPG key ID: E1FD745328866B0A
16 changed files with 739 additions and 28 deletions

View file

@ -153,4 +153,15 @@ public final class SortOrder {
+ " ASC";
}
/**
* Genre sort order entries.
*/
public interface GenreSortOrder {
/* Genre sort order A-Z */
String GENRE_A_Z = MediaStore.Audio.Genres.DEFAULT_SORT_ORDER;
/* Genre sort order Z-A */
String ALBUM_Z_A = GENRE_A_Z + " DESC";
}
}