Add some Android 21 notification features
This commit is contained in:
parent
c17005218f
commit
99989cd1d5
|
@ -203,6 +203,10 @@ public class NotificationService {
|
|||
mBuilder.setSound(Uri.parse(ringtone));
|
||||
}
|
||||
}
|
||||
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
|
||||
mBuilder.setCategory(Notification.CATEGORY_MESSAGE);
|
||||
mBuilder.setColor(mXmppConnectionService.getResources().getColor(R.color.primary));
|
||||
}
|
||||
mBuilder.setSmallIcon(R.drawable.ic_notification);
|
||||
mBuilder.setDeleteIntent(createDeleteIntent());
|
||||
mBuilder.setLights(0xffffffff, 2000, 4000);
|
||||
|
|
Loading…
Reference in a new issue