Remove unknown genre, add number of songs

This commit is contained in:
Eugene Cheung 2017-12-14 23:11:47 -05:00
commit 918090ee63
No known key found for this signature in database
GPG key ID: E1FD745328866B0A
6 changed files with 52 additions and 74 deletions

View file

@ -59,6 +59,9 @@ public class GenreAdapter extends RecyclerView.Adapter<GenreAdapter.ViewHolder>
if (holder.title != null) {
holder.title.setText(genre.name);
}
if (holder.text != null) {
holder.text.setText(MusicUtil.getGenreInfoString(activity, genre));
}
}
@Override