Merge branch 'feat/genres' of git://github.com/arkon/Phonograph into arkon-feat/genres
This commit is contained in:
commit
441b64fce4
15 changed files with 694 additions and 14 deletions
|
|
@ -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";
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue