NotificationCompat 4.1 SetSmallIcon and SetLargeIcon

后端 未结 5 1444
北海茫月
北海茫月 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:35

    In my case, I just set my red icon as the large icon and the setColor to Color.WHITE and set a white icon as my small icon. That way, in the notifications area, my red icon is shown and the white icon is "disapeared".

    Bitmap icon = BitmapFactory.decodeResource(getResources(),R.drawable.app_logo);
    
    mBuilder.setContentIntent(resultPendingIntent).setColor(Color.WHITE).setLargeIcon(icon);
    

提交回复
热议问题