首页 > 解决方案 > 如何更改通知徽章 Android

问题描述

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

通知

谢谢!

标签: androidfirebasepush-notificationnotificationsfirebase-cloud-messaging

解决方案


这个答案应该适用于 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();

推荐阅读