I used this simple code to set a Notification in Android 4.1 or higher. It works well, but my problem comes with SmallIcon and LargeIcon. I understand that SmallIcon is show
There is a way around this weird implementation. Instead of using setLargeIcon use this:
setLargeIcon
Notification notification=notificationBuilder.build() notification.contentView.setImageViewResource(android.R.id.icon, R.drawable.your_large_icon);