颤动的firebase推送通知图标
Posted
技术标签:
【中文标题】颤动的firebase推送通知图标【英文标题】:flutter firebase push notification icon 【发布时间】:2021-01-25 23:30:19 【问题描述】:我制作了一个应用程序并实现了推送通知,它可以工作,但我尝试使用image.png
更改默认图标,但它没有按我预期的方式工作。这是我的通知的外观:
我希望我的图标看起来像这样:
我在我的 android manifest 中添加了这个:
<!-- Add custom icon to the notifications -->
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/ic_notifications" />
<!-- Change the color of the icon -->
<meta-data
android:name="com.google.firebase.messaging.default_notification_color"
android:resource="@color/colorPrimary" />
我不知道我做错了什么,但你能帮帮我吗?
【问题讨论】:
【参考方案1】:meta-data
标签中的android:resource
(@folder
/name
)是指通知图标应该位于android\app\src\main\res\folder
-size
\ name
.png.
对于您的确切范围,您需要位于特定位置的drawable
-size
文件夹,其中包含名为ic_notifications
的png。我建议你使用这个amazing tool 来生成所有需要的具有正确布局的图标(透明白色)。
因为您的通知也有颜色,所以您必须在android/app/src/main/res/values
中添加colors.xml
,其中将包含您的colorPrimary
:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#FFFFFF</color>
</resources>
额外:application
标签中的android:icon
指的是应用程序的图标。只是想添加这条额外的信息,因为当找到的示例非常相似时,一开始可能会令人困惑。
【讨论】:
以上是关于颤动的firebase推送通知图标的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 firebase-nativescript 将图标添加到推送通知
Flutter - myBackgroundMessageHandler 从未在推送通知中调用