I use Notification.Builder to create a notification. For this notification, I use the list of levels as a small icon
mNotificationBuilder.setSmallIcon(R.drawable.icon_levellist, levelInt);
This sets the icon to the correct level in the status bar, however when the notification is turned off, the icon is set to the default level.
I tried using a custom layout to display it and it works, however I would like to be able to use the default layout that comes with Notification.Builder.
This is mistake?
source share