Notifications: Set customs views in builder

This commit is contained in:
Coffeemakr 2016-12-27 13:31:34 +01:00
parent 05cbc7891d
commit 7c7129f9a1
1 changed files with 2 additions and 6 deletions

View File

@ -339,13 +339,9 @@ public class BackgroundPlayer extends Service /*implements MediaPlayer.OnPrepare
//Make notification appear on lockscreen
noteBuilder.setVisibility(Notification.VISIBILITY_PUBLIC);
noteBuilder.setCustomContentView(view);
noteBuilder.setCustomBigContentView(expandedView);
note = noteBuilder.build();
note.contentView = view;
if (android.os.Build.VERSION.SDK_INT > 16) {
note.bigContentView = expandedView;
}
return note;
}