Bug fixes
- fixed navigation bar color bug - added some light gradients to now playing screen - telephone call pause bug - more bugs
This commit is contained in:
parent
f362df7d3d
commit
6a2c3e565d
9 changed files with 41 additions and 19 deletions
|
|
@ -22,7 +22,7 @@ public class DeleteSongsDialogHelper {
|
|||
|
||||
public static MaterialDialog getDialog(final Context context, final List<Song> songs) {
|
||||
String title = context.getResources().getString(R.string.delete_songs_1);
|
||||
title = songs.size() > 1 ? title + songs.size() + context.getResources().getString(R.string.delete_songs_2) : title + songs.get(0).title + "?";
|
||||
title = songs.size() > 1 ? title + songs.size() + context.getResources().getString(R.string.delete_songs_2) : title + "'" + songs.get(0).title + "' " + "?";
|
||||
return new MaterialDialog.Builder(context)
|
||||
.title(title)
|
||||
.content(context.getResources().getString(R.string.delete_warning))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue