如何在ionic.io -push通知中设置大图像

Der*_*Lin 5 icons android push ionic

在离子推送通知中,我们可以在"android"数组中添加"icon":"xxxxx"来更改新的(小)图标路径,

var push = new Ionic.Push({
"debug": true,
"pluginConfig": {
 "android": {
   "iconColor": "#343434",
   "icon": "abc"
 }
} 
});
Run Code Online (Sandbox Code Playgroud)

其中abc.png来自platform/android/res/drawable文件夹.

但是有什么方法可以改变push的大图标吗?因为iconColor有效,但我测试了很多次,我不能将颜色背景更改为大图像.

任何人都可以帮助我..谢谢!!

Mat*_*ndy 1

您可以imageandroid对象添加属性,该属性是描述文件夹中图像的引用drawables、资产 URI 或远程 URL 的字符串。尽管 Ionic Push 并未将自己列为支持此属性,但实际测试验证了这一点。

更多信息:https://github.com/phonegap/phonegap-plugin-push/blob/master/docs/PAYLOAD.md#images