NotificationManager notifMgr = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
Notification notif = new Notification();
//Use this if you want to use the default lights for a notification
notif.defaults |= Notification.DEFAULT_LIGHTS;
//Use this if you want custom values for the LED
notif.ledARGB = 0xff0000ff; // Blue flash
notif.ledOnMS = 300; // LED's on for 300 ms
notif.ledOffMS = 1000; // LEDs off for 1 second
notif.flags |= Notification.FLAG_SHOW_LIGHTS;
notifMgr.notify(1234, notif);
我正在使用此代码更改手机 LED 的颜色。但我看不到变化。我哪里错了?第二件事是无论如何都可以获得LED的状态。我正在测试我们的 HTC Hero/Htc G2。在 Bat Low 和电子邮件和 SMS 上,我的手机给了我一个闪烁的 LED 和发光的轨迹球。所以我认为我的系统有支持。为什么这段代码不起作用不知道有人能告诉我吗?