AndroidのLEDを光らせる
現在AndroidのLEDを点灯させようとしているのですが、全く点滅しません。
以下のコード以外に何か設定しなければならないことがあるのでしょうか?
それとも端末によって光る端末と光らない端末があったりするのでしょうか?
以下に現在書いているコードを記しますので、どなたかわかる方がいたらご指導いただきたいです。
すみませんが、よろしくお願いします。
Notification notification = new Notification();
notification.defaults = Notification.DEFAULT_LIGHTS;
notification.flags = Notification.FLAG_SHOW_LIGHTS;
notification.ledOnMS = 3000;
notification.ledOffMS = 1000;
notification.ledARGB = Color.BLUE;
NotificationManager notificationManager = (NotificationManager)
activity.getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0, notification);