GCM消息被覆盖

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GCM消息被覆盖相关的知识,希望对你有一定的参考价值。

我正在使用GCM推送通知向用户传递一些通知。我的问题是当发送单个消息然后这个工作正常如果发送多个,那么最后一条消息显示给所有通知。

我哪里弄错了?

  private static void generateNotification(Context context, String message) {
  int icon = R.drawable.ic_launcher;
  long when = System.currentTimeMillis();
  NotificationManager notificationManager = (NotificationManager)
          context.getSystemService(Context.NOTIFICATION_SERVICE);

  Intent notificationIntent = new Intent(context, GCMMessageView.class);
  String[] messageArray = message.split("\#");
  // param :: agentId, Name, Msg
  DatabaseHelper db = new DatabaseHelper(context);
  int notificationId = db.insertnotifications(messageArray[1], messageArray[0], messageArray[messageArray.length-1]);

  notificationIntent.putExtra("message", messageArray[messageArray.length-1]);
  // set intent so it does not start a new activity
  notificationIntent.setFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
  PendingIntent intent = PendingIntent.getActivity(context, 0, notificationIntent, 0);

  Notification notification = new NotificationCompat.Builder(context)
        .setContentText(messageArray[messageArray.length-1])
        .setContentTitle(context.getString(R.string.app_name))
        .setSmallIcon(icon)
        .setWhen(when)
        .setContentIntent(intent)
        .build();

    notification.flags |= Notification.FLAG_AUTO_CANCEL;

    // Play default notification sound
    notification.defaults |= Notification.DEFAULT_SOUND;

    // Vibrate if vibrate is enabled
    notification.defaults |= Notification.DEFAULT_VIBRATE;
    notificationManager.notify(notificationId, notification);
}
答案

为每封邮件设置唯一的通知ID。因此,它被覆盖了。

另一答案

在您的通知中使用此编码

  int requestID = (int) System.currentTimeMillis();
  PendingIntent intent = PendingIntent.getActivity(context, requestID,
  notificationIntent,0 );

然后你的通知不会覆盖我希望这会对你有所帮助

另一答案

是的,同意Dipo的回答。根据Android Notification Developer Guide由于多个通知的相同通知ID而被覆盖。在接收方端收到最后一条消息。您需要为每个通知实现随机唯一通知ID。有很多方法可以实现这一点。你可以用它

int notificationId = new Random().nextInt();

您还可以使用毫秒级的系统时间作为通知ID。然后您需要将此唯一通知ID传递给qazxsw poi

干杯!保持编码

另一答案

很晚才回答这个帖子,但觉得这对某人有帮助。同样的实现也适用于FCM firebase实现

notificationManager.notify()

以上是关于GCM消息被覆盖的主要内容,如果未能解决你的问题,请参考以下文章

GCM(谷歌云消息)无法覆盖所有注册用户?

如何使用 GCM 在 android 设备上分别显示每个推送通知

使用 GCM 发送推送消息时,错误代码“notRegistered”是啥意思?

无需谷歌云消息(GCM)将通知从 PC 推送到 android

GCM 给出空消息

如何使用 Android 代码中的 GCM CCS 进行上游消息传递服务?