Skip to content

Instantly share code, notes, and snippets.

@itog
Created July 9, 2010 07:11
Show Gist options
  • Save itog/469183 to your computer and use it in GitHub Desktop.
Save itog/469183 to your computer and use it in GitHub Desktop.
//
// Sound, Vibrate, LED 全てデフォルト
//
Notification notification = new Notification();
notification.defaults |= Notification.DEFAULT_ALL;
NotificationManager notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(R.string.app_name, notification);
//
// 色指定でLEDを光らせる
//
Notification notification = new Notification();
notification.ledARGB = 0xffff0000;
notification.ledOnMS = 1;
notification.ledOffMS = 0;
notification.flags |= Notification.FLAG_SHOW_LIGHTS;
//notification.defaults |= Notification.DEFAULT_LIGHTS;
NotificationManager notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(R.string.app_name, notification);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment