我正在使用node-gcm向Android设备发送通知,在某些情况下,我需要发送带有通知的图像以显示为缩略图,如下所示: notification with thumbnail
有时我需要发送没有缩略图的通知。使用下面的代码,我可以在通知中发送图像,问题是当收到另一个通知时,它们会崩溃,使新的覆盖已经存在的通知:
var message = new gcm.Message({
"data" : {
"title" : "Test",
"message" : "Test message!",
"priority" : 2, // Highest priority.
"ledColor" : [255, 0, 0, 1],
"content-available": "1",
"image": req.body.notificationImageUrl, //<-- image URL
},
});
但是,如果我设置如下所示的消息,我找不到发送图像的方法,但通知不会崩溃,所有这些都会出现。另一个问题是led在这个版本中没有激活:
var message = new gcm.Message({
data: {
"priority" : 2, // Highest priority.
"content-available": "1",
"image": req.body.notificationImageUrl, // <-- image URL
},
notification:{
title: "Test",
body: "Test message!",
color: "#892121",
sound: 'default',
vibrationPattern: [300, 150, 300], // Vibrate for 300ms then wait 150ms and then vibrate for 300ms.
ledColor: [255, 0, 0, 1], // <-- this does not work
},
});
我想要的是一种通过缩略图发送通知的方式,它不会覆盖之前的通知。
编辑:我忘了提及,即时通讯使用Ionic Framework与Cordova,因此我无法管理设备中的通知,除非有办法通过这些框架完成。 提前谢谢!
答案 0 :(得分:2)
在通过node-gcm issues找到解决方案的同时,有一个名为&#34; notId&#34;的参数。为通知添加ID。
var message = new gcm.Message({
"data": {
"title": "Test",
"message": "Test message!",
"priority": 2, // Highest priority.
"ledColor": [255, 0, 0, 1],
"content-available": "1",
"image": req.body.notificationImageUrl,
"notId": parseInt(Math.random() * new Date().getSeconds(), 10), // <-- this solved the problem
},
});
答案 1 :(得分:0)
通知显示的管理在设备上完成。您必须确保在Android上为每个通知设置不同的NOTIFICATION_ID,否则最后一个将始终替换之前的通知。
// Sets an ID for the notification - make sure to change this for different notifications
int mNotificationId = 001;
// Gets an instance of the NotificationManager service
NotificationManager mNotifyMgr = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
// Builds the notification and issues it
mNotifyMgr.notify(mNotificationId, mBuilder.build());