次のコードは、Android2.3.3を搭載したMotorolaDefyでうまく機能しますが、Nexus4では機能しません。LED自体は問題ないはずです。市場のアプリカラーLEDテスターは機能します。
NotificationManager notif = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
final Notification notification = new Notification();
notification.ledARGB = Color.RED;
notification.ledOnMS = 1000;
notification.ledOffMS = 300;
notification.flags |= Notification.FLAG_SHOW_LIGHTS;
notif.notify(1, notification);
誰かがここでトリックを何をするか知っていますか?