以下代码适用于Android Def.3的摩托罗拉Defy 然而,它不适用于Nexus 4.LED本身应该没问题,市面上的app color 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);
有人知道这会有什么作用吗?
答案 0 :(得分:3)
我刚刚在Nexus 4上测试了您的代码并且它正常工作。但在测试之前我已经锁定了手机。可能只有在屏幕关闭时才会突出显示此LED。