【问题标题】:How to change notification badge Android如何更改通知徽章 Android
【发布时间】:2018-10-18 19:00:47
【问题描述】:

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

谢谢!

【问题讨论】:

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


    【解决方案1】:

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

    【讨论】:

    • 工作感谢!
    猜你喜欢
    • 1970-01-01
    • 2022-08-02
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2022-12-14
    • 1970-01-01
    • 2011-04-26
    • 2020-05-22
    相关资源
    最近更新 更多