I am trying to set color for app name text that appears on top of notification. How to change the color to green or blue from grey?
From the main settings menu, "Notification Theme" allows you to change the background color of your notifications. You can enable a dark theme, light theme, the system default, or choose from a selection of colors.
Just set the color of your notification (as described in https://stackoverflow.com/a/45874836/364388):
NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
...
builder.setColor(ContextCompat.getColor(context, R.color.my_notif_color));
manager.notify(notificationId, builder.build())
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With