多通知处理
Multiple notification handling
我在计算 Intent、PendingIntent Filters 和 Flags 用于通知。
通知正常工作并按预期生成,但问题是只有最后创建的通知保留了 Bundle Data。
我希望所有通知都保留每个通知的捆绑数据,直到用户点击它们。
考虑一个应用程序,当不同的用户向您发送一条消息时,系统会创建一个新通知,当您单击任何通知时,应用程序将启动并将您带到某个特定的地方 Activity。我想要同样的东西,但是当有多个通知时,最后一个通知会保留 Data,而之前的通知会丢失它们的 Bundle Data 和 意图。
还有一个 Filters 用来限制应用程序每次启动 MainActivity 的新实例单击通知。
每个通知的Notification_ID不同。
public class AlarmSchedulingService extends IntentService {
private NotificationManager mNotificationManager;
public AlarmSchedulingService() {
super("SchedulingService");
}
protected void onHandleIntent(Intent intent) {
Bundle extras = intent.getExtras();
sendNotification(extras.getInt(KEY_EXTRAS_NOTIFICATION_ID));
}
public void sendNotification(int NOTIFICATION_ID) {
mNotificationManager = (NotificationManager) this
.getSystemService(Context.NOTIFICATION_SERVICE);
Intent intent = new Intent(this, MainActivity.class);
intent.putExtra(keyName, extraData);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
intent, PendingIntent.FLAG_UPDATE_CURRENT);
// use the right class it should be called from the where alarms are set
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
this)
.setAutoCancel(true)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle(titleString)
.setStyle(
new NotificationCompat.BigTextStyle()
.bigText(messageString))
.setDefaults(
Notification.DEFAULT_SOUND
| Notification.DEFAULT_LIGHTS)
.setContentText(messageString);
mBuilder.setContentIntent(contentIntent);
mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
}
}
这表明:
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
intent, PendingIntent.FLAG_UPDATE_CURRENT);
您正在为所有通知提供请求代码 0。
0 应替换为每个唯一编号,否则,每个新通知都会覆盖旧通知。
我在计算 Intent、PendingIntent Filters 和 Flags 用于通知。
通知正常工作并按预期生成,但问题是只有最后创建的通知保留了 Bundle Data。
我希望所有通知都保留每个通知的捆绑数据,直到用户点击它们。
考虑一个应用程序,当不同的用户向您发送一条消息时,系统会创建一个新通知,当您单击任何通知时,应用程序将启动并将您带到某个特定的地方 Activity。我想要同样的东西,但是当有多个通知时,最后一个通知会保留 Data,而之前的通知会丢失它们的 Bundle Data 和 意图。
还有一个 Filters 用来限制应用程序每次启动 MainActivity 的新实例单击通知。
每个通知的Notification_ID不同。
public class AlarmSchedulingService extends IntentService {
private NotificationManager mNotificationManager;
public AlarmSchedulingService() {
super("SchedulingService");
}
protected void onHandleIntent(Intent intent) {
Bundle extras = intent.getExtras();
sendNotification(extras.getInt(KEY_EXTRAS_NOTIFICATION_ID));
}
public void sendNotification(int NOTIFICATION_ID) {
mNotificationManager = (NotificationManager) this
.getSystemService(Context.NOTIFICATION_SERVICE);
Intent intent = new Intent(this, MainActivity.class);
intent.putExtra(keyName, extraData);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
intent, PendingIntent.FLAG_UPDATE_CURRENT);
// use the right class it should be called from the where alarms are set
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
this)
.setAutoCancel(true)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle(titleString)
.setStyle(
new NotificationCompat.BigTextStyle()
.bigText(messageString))
.setDefaults(
Notification.DEFAULT_SOUND
| Notification.DEFAULT_LIGHTS)
.setContentText(messageString);
mBuilder.setContentIntent(contentIntent);
mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
}
}
这表明:
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
intent, PendingIntent.FLAG_UPDATE_CURRENT);
您正在为所有通知提供请求代码 0。 0 应替换为每个唯一编号,否则,每个新通知都会覆盖旧通知。