Android如何更改通知徽章

时间:2018-10-18 19:00:47

标签: android firebase push-notification notifications firebase-cloud-messaging

我已经为我的应用设置了Firebase云消息传递,但是该图标并未更改为我需要的样子。我查看了开发人员文档,并关注了这篇帖子:Q Change notification icon in Android Studio,但它并没有改变。我想更改Firebase的图标以及该应用程序显示的每个通知,请帮忙!

Notification

谢谢!

1 个答案:

答案 0 :(得分:3)

此答案适用于Firebase通知:Q Change notification icon in Android Studio

对于您自己创建的通知,只需使用Notification.Builder#setSmallIcon/setLargeIcon即可:

Notification notification = new Notification.Builder(mContext)
         ...
         .setSmallIcon(R.drawable.new_mail)
         .setLargeIcon(aBitmap)
         .build();