在离子推送通知中,我们可以在“android”数组中添加“icon”:“xxxxx”来更改新的(小)图标路径,
var push = new Ionic.Push({
"debug": true,
"pluginConfig": {
"android": {
"iconColor": "#343434",
"icon": "abc"
}
}
});
其中abc.png来自platform / android / res / drawable文件夹。
但是有没有方法可以改变push的大图标?因为iconColor有效,但我测试了很多次,我不能将颜色背景更改为大图像。
任何人都可以帮助我..谢谢!
答案 0 :(得分:0)
您可以向image
对象添加android
属性,该对象是描述drawables
文件夹中图像引用,资产URI或远程URL的字符串。尽管Ionic Push并未将其自身列为支持此属性,但实际测试会对其进行验证。
更多信息:https://github.com/phonegap/phonegap-plugin-push/blob/master/docs/PAYLOAD.md#images
答案 1 :(得分:0)
目前,通过FCM通知消息有效负载不支持大图标。 见https://github.com/firebase/quickstart-android/issues/84。这个问题已知,但问题已经结束。