Servus Leute,
Ich habe mal wieder ein Problem, und zwar funktioniert bei mir die .setLights Funktion nicht.
Wenn ich die Default-Einstellung nehme, funtzt es - aber dass möchte ich nicht da ich über setLights gerne selbst die Farbe und wie lange es an bleiben und ausbleiben soll Einstellen möchte, nur leider ohne Erfolg bist jetzt.
Die Default-Funktion: //.setDefaults(Notification.DEFAULT_SOUND | Notification.DEFAULT_VIBRATE | Notification.DEFAULT_LIGHTS)
Kann bitte mir jemand sagen wieso dass nicht funtzt wenn ich das über die .setLights Funktion mache?
Danke
Code
NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ausrufe)
.setContentTitle("Meldung")
.setContentText(message)
.setColor(getResources().getColor(R.color.transparent))
.setContentIntent(pendingIntent)
.setAutoCancel(true)
.setPriority(NotificationCompat.PRIORITY_MAX)
.setLights(Color.RED, 1000,500)
//.setDefaults(Notification.DEFAULT_SOUND | Notification.DEFAULT_VIBRATE | Notification.DEFAULT_LIGHTS)