Use LED for notification (same parameters as Gmail and GTalk services)

* Agreed to by Erick and Prasenjit

Change-Id: I1a0f3642c9b10f981b2feed55762407ed853763d
This commit is contained in:
Marc Blank 2009-08-23 12:51:17 -07:00
parent df86adf873
commit 68c3c7518e

View File

@ -578,9 +578,16 @@ public class MailService extends Service {
pending); pending);
notification.sound = ringtone; notification.sound = ringtone;
notification.defaults = vibrate // Use same code here as in Gmail and GTalk for vibration
? Notification.DEFAULT_LIGHTS | Notification.DEFAULT_VIBRATE if (vibrate) {
: Notification.DEFAULT_LIGHTS; notification.defaults |= Notification.DEFAULT_VIBRATE;
}
// This code is identical to that used by Gmail and GTalk for notifications
notification.flags |= Notification.FLAG_SHOW_LIGHTS;
notification.ledARGB = 0xff00ff00;
notification.ledOnMS = 500;
notification.ledOffMS = 2000;
NotificationManager notificationManager = NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);