通知機能をアプリケーションに追加して、通知LEDを点滅させようとしています。何も動作すべての私の試みの後...Android - LED通知が点滅しない
はここに私のコードです:誰が助けることができれば
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
super.onMessageReceived(remoteMessage);
NotificationCompat.Builder notification = new NotificationCompat.Builder(this)
.setLights(Color.BLUE, 200, 200)
.setContentTitle(remoteMessage.getData().get("title"))
.setContentText(remoteMessage.getData().get("body"))
.setColor(getColor(R.color.buttonBlueInactive))
.setSmallIcon(R.mipmap.ic_launcher);
NotificationManagerCompat manager = NotificationManagerCompat.from(this);
manager.notify(1, notification.build());
}
、それは本当にいただければ幸いです。私は間違っていないよ場合は、
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
super.onMessageReceived(remoteMessage);
NotificationCompat.Builder notification = new NotificationCompat.Builder(this)
.setLights(Color.BLUE, 200, 200)
// Add the line bellow
.setDefaults(Notification.DEFAULT_VIBRATE | Notification.DEFAULT_SOUND | Notification.FLAG_SHOW_LIGHTS)
.setContentTitle(remoteMessage.getData().get("title"))
.setContentText(remoteMessage.getData().get("body"))
.setColor(getColor(R.color.buttonBlueInactive))
.setSmallIcon(R.mipmap.ic_launcher);
NotificationManagerCompat manager = NotificationManagerCompat.from(this);
manager.notify(1, notification.build());
}
を200から2000だけを変更するかどうかをテストする。 – W0rmH0le
ちょうどそれを試みたが、それは動作しなかった.. –
Ok。あなたは少なくとも、通知を得ていますよね?ちょうど点滅していないLEDだけ? – W0rmH0le