使用旧的和新的附加功能更新通知

时间:2012-02-27 15:25:09

标签: android notifications android-pendingintent

更新通知时,可以选择使用旧的附加功能或使用新的附加功能。是否有可能将新的附加内容附加到旧附加内容中,即使用两者新旧附加内容?

1 个答案:

答案 0 :(得分:0)

你不能直接这样做,但你可以做类似的事情:

使用上一个Intent保留变量(用于创建PendingIntent)。

对于每个新的Intent,使用旧内容和新内容创建累积 Intent

Intent newIntent = new Intent(oldIntent); 
//...update newIntent with the "fresh" data (or merge it following your own logic)

然后使用 FLAG_UPDATE_CURRENT 创建PendingIntent