我正在尝试为我在前台的活动打开 LED 闪烁,但它仅在屏幕关闭时才有效。
是否可以在屏幕打开的情况下打开 LED 以进行活动活动?
我的代码:
protected void led() {
Notification notif = new Notification();
notif.ledARGB = 0xFF0000ff;
notif.flags = Notification.FLAG_SHOW_LIGHTS | Notification.FLAG_ONGOING_EVENT;
notif.ledOnMS = 800;
notif.ledOffMS = 200;
notificationManager.notify( LED_NOTIFICATION_ID, notif );
}