出于某种原因,我不再让我的设备上的LED显示通知:
NotificationCompat.Builder builder = new NotificationCompat.Builder(context, "myNotification")
.setContentIntent(pendingIntent)
.setSmallIcon(R.drawable.logo)
.setContentTitle(msgTitle)
.setStyle(new NotificationCompat.BigTextStyle().bigText(msgContent))
.setContentText(msgContent)
.setPriority(Notification.PRIORITY_MAX)
.setLights(Color.CYAN, 2000, 2000)
.setAutoCancel(true);
notificationManager.notify(1234, builder.build());
通知本身正确显示,只是LED指示灯不亮。
是的,当通知触发并且手机上的LED也与其他应用程序一起使用时,我的屏幕关闭。