I would like to ask if it is possible to make programmatically the colour of the notification icon "responsive" to the status bar colour. That means if the status bar is white (or some other light colours) then the icon will be displayed dark and if it is black (or some other dark colour) then the icon will be displayed white. I also have created two variants of the icon - white one (icon_white) and black one (icon_black) and I also could create a notification with the white icon so far but when the status bar is white, the icon can't be seen. My code is here below:
White icon one light and black backgrounds
Intent intent = new
Intent(MainActivity.this, MainActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
PendingIntent pendingIntent = PendingIntent.getActivity(MainActivity.this, 0, intent, 0);
android.support.v4.app.NotificationCompat.Builder builder = new android.support.v4.app.NotificationCompat.Builder(MainActivity.this, "id 1")
.setSmallIcon(R.drawable.icon_white)
.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
.setContentTitle("Notification title")
.setContentText("Notification text")
.setPriority(android.support.v4.app.NotificationCompat.PRIORITY_DEFAULT)
.setContentIntent(pendingIntent)
.setAutoCancel(true);
android.support.v4.app.NotificationManagerCompat notificationManager = android.support.v4.app.NotificationManagerCompat.from(MainActivity.this);
notificationManager.notify(1, builder.build());
Thank you very much for your help bilykralik16
You can save a shared preference color value for the theme. Use the setColor value with the saved them color.
.setColor(ContextCompat.getColor(getApplicationContext(), color.color_default))