在 GCM 中压缩通知

Squeeze notifications in GCM

我有问题。 我有一个 android 应用程序(基于 Corona)。 当我的用户退出游戏时,我会向他们发送 GCM 通知。 主要问题是通知的数量会非常多,并且会惹恼用户。 所以我想要的是一种将通知压缩到具有多个记录的单个通知的能力,每个记录显示我的应用程序的单个通知,而不是有很多通知。 我阅读了 Google GCM 参考资料,找到了 "tag" 和 "collapse_key" 选项,但它们用新通知替换了之前的通知,但我希望新通知附加在最后一个通知框而不是替换它或创建一个新的通知实例。 感谢您的帮助

http://developer.android.com/training/notify-user/managing.html

我不能只提交一个 link,所以这里也有一个报价给你

When you need to issue a notification multiple times for the same type of event, you should avoid making a completely new notification. Instead, you should consider updating a previous notification, either by changing some of its values or by adding to it, or both.

The following section describes how to update notifications and also how to remove them.