Change album,artist sort; fix menu selection bug

This commit is contained in:
Nicholas Narsing 2018-04-28 11:07:05 -04:00
commit 3b62a4578f
No known key found for this signature in database
GPG key ID: 6C867A2AC16B645A
2 changed files with 25 additions and 17 deletions

View file

@ -60,7 +60,8 @@ public final class SortOrder {
+ " DESC";
/* Album sort order artist */
String ALBUM_ARTIST = MediaStore.Audio.Artists.DEFAULT_SORT_ORDER;
String ALBUM_ARTIST = MediaStore.Audio.Artists.DEFAULT_SORT_ORDER
+ ", " + MediaStore.Audio.Albums.DEFAULT_SORT_ORDER;
/* Album sort order year */
String ALBUM_YEAR = MediaStore.Audio.Albums.FIRST_YEAR + " DESC";