NotificationCompat 4.1 SetSmallIcon and SetLargeIcon

后端 未结 5 1440
北海茫月
北海茫月 2020-12-14 00:24

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

5条回答
  •  爱一瞬间的悲伤
    2020-12-14 00:26

    There is a way around this weird implementation. Instead of using setLargeIcon use this:

    Notification notification=notificationBuilder.build()
    notification.contentView.setImageViewResource(android.R.id.icon, R.drawable.your_large_icon);
    

提交回复
热议问题