android FCM自定义通知图标抖动

cig3rfwq  于 2023-04-10  发布在  Android
关注(0)|答案(2)|浏览(129)

大家早上好,
我正在使用Firebase云消息发送通知,但我试图更改其图标,但无法执行此操作
我尝试了很多解决方案,但没有人为我工作,例如:
1-

<meta-data
  android:name="com.google.firebase.messaging.default_notification_icon"
  android:resource="@mipmap/ic_notification" />

2-更改启动程序图标
3-修改launch_background.xml并使其透明
还有很多解决方案,谁能帮帮我吗

xpcnnkqh

xpcnnkqh1#

我能够设置自定义通知和自定义声音或自定义图标通过本地通知,而使用推送通知在Flutter。

project detail

bpzcxfmw

bpzcxfmw2#

我也面临着同样的问题。我的图标在一些设备上变灰了。主要问题是图标背景。
将此元数据添加到清单对我很有用。&记住图标背景必须透明。

<!--notification icon-->
    <meta-data
        android:name="com.google.firebase.messaging.default_notification_icon"
        android:resource="@drawable/bell" />

如果您想更改颜色,请将此元数据添加到清单中。

<!--notification color-->
    <meta-data
        android:name="com.google.firebase.messaging.default_notification_color"
        android:resource="@color/colorPrimary" />

相关问题