How do i change notification background in android?
I am using androidx.core.app.NotificationCompat
and below code work for Oreo and above Oreo device but not working for below Oreo devices.
builder = new NotificationCompat.Builder(this, CHANNEL_ID)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentIntent(pendingIntent)
.setShowWhen(false)
.setStyle(new NotificationCompat.DecoratedCustomViewStyle())
.setCustomContentView(notificationLayout)
.setColor(ContextCompat.getColor(PlayerEngineService.this, R.color.colorBlack))
.setColorized(true);
I make custom notification View
with black background. But other then notification view notification background is white.
Thanks in Advance