当前位置 : 主页 > 手机开发 > cordova >

在cordova android的状态栏中显示多个推送通知

来源:互联网 收集:自由互联 发布时间:2021-06-10
我在cordova using this push plugin中成功实现了推送通知. 一切正常,但如果收到多个通知只有最新通知的问题可用.我已经提到了this answer,但它使用了较旧的插件. 这是我从答案中尝试的代码
我在cordova using this push plugin中成功实现了推送通知.

一切正常,但如果收到多个通知只有最新通知的问题可用.我已经提到了this answer,但它使用了较旧的插件.

这是我从答案中尝试的代码.

int notId=0;
try {
  notId = Integer.parseInt(extras.getString("notId"));
}
catch(NumberFormatException e) {
  Log.e(TAG, "Number format exception - Error parsing Notification ID: " + e.getMessage());
}
catch(Exception e) {
  Log.e(TAG, "Number format exception - Error parsing Notification ID" + e.getMessage());
}

notId++;
mNotificationManager.notify((String) appName, notId, mBuilder.build());
Phonegap PushPlugin使用从GCM服务器传递的通知的notId属性来分隔多个通知.

您需要做的是确保在将通知发送到GCM服务(而不是通过电话!!!)时,在服务器上生成具有唯一notId属性的通知.

(notId属性是通知数据对象上的属性,就像消息和标题一样).

我还想提醒您,当前版本的插件v2.4.0存在错误,因此当用户点击通知时,您的应用仍然只会收到最新数据的通知.这个问题有一个补丁:https://github.com/phonegap-build/PushPlugin/pull/333

网友评论