2

我制作了一个应用程序并实现了推送通知,它可以工作,但我尝试用 a 更改默认图标,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" />

我不知道我做错了什么,但你能帮帮我吗?

4

1 回答 1

4

标签中的android:resource(@ folder/ namemeta-data指的是通知图标,应该位于android\app\src\main\res\ folder- size\ name.png。

对于您的确切范围,您需要特定位置的drawable-size文件夹,其中 png 名为ic_notifications. 我建议你使用这个神奇的工具来生成所有需要的具有正确布局的图标(透明上的白色)。

因为您的通知也有颜色,所以您必须添加将包含您colors.xml的:android/app/src/main/res/valuescolorPrimary

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="colorPrimary">#FFFFFF</color>
</resources>

额外:android:icon标签中的是application指应用程序的图标。只想添加这条额外的信息,因为当找到的示例非常相似时,一开始可能会令人困惑。

于 2021-02-02T17:36:15.747 回答