我制作了一个应用程序,并实现了推送通知,并且可以正常工作,但是我尝试使用image.png
更改默认图标,但是它没有按我预期的方式工作。这是我的通知的样子:
我希望我的图标看起来像这样:
我在Android清单中添加了以下内容:
<!-- 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" />
我不知道我做错了什么,但是您能帮我吗?
答案 0 :(得分:3)
android:resource
标签中的 folder
(@name
/meta-data
) 是指通知图标应该位于 android\app\src\main\res\ folder
-size
\ name
.png.
对于您的确切范围,您需要特定位置的 drawable
-size
文件夹,其中包含名为 ic_notifications
的 png。我建议您使用此 amazing tool 以正确的布局(透明上的白色)生成所有必需的图标。
因为您的通知也有颜色,所以您必须在包含您的 colors.xml
的 android/app/src/main/res/values
中添加 colorPrimary
:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#FFFFFF</color>
</resources>
额外: android:icon
标签中的 application
指的是应用程序的图标。只想添加这条额外的信息,因为当找到的示例非常相似时,一开始可能会令人困惑。