Add some Android 21 notification features

This commit is contained in:
Sam Whited 2015-01-17 23:41:57 -05:00
parent c17005218f
commit 99989cd1d5
1 changed files with 4 additions and 0 deletions

View File

@ -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);