我开发了一个应用程序,用户可以在其中创建事件并为该事件设置通知。所以我想添加多个通知。我使用以下代码。
final Notification notifyDetails = new Notification(R.drawable.icon, "Myapp",calendar.getTimeInMillis());
Context context = getApplicationContext();
Intent notifyIntent = new Intent(context, ViewDoughnut.class);
PendingIntent pendingIntent = PendingIntent.getActivity(ViewCal.this, 0, notifyIntent, android.content.Intent.FLAG_ACTIVITY_NEW_TASK);
notifyDetails.setLatestEventInfo(context, contentTitle, contentText, pendingIntent);
notifyDetails.flags = Notification.FLAG_ONGOING_EVENT;
mNotificationManager.notify(SIMPLE_NOTFICATION_ID, notifyDetails);
当我使用上面的代码添加事件并创建通知时,它工作正常。但是,如果我添加另一个事件,没有创建新通知,旧的通知就会更新。我想再添加一个通知。怎么做?此外,如果用户删除与其对应的事件,我想删除任何特定通知。怎么可能?
答案 0 :(得分:12)
我认为SIMPLE_NOTIFICATION_ID
是常数?要获得单独的通知,您需要为每个通知使用不同的ID。
答案 1 :(得分:0)
以下是传递唯一通知ID的代码:
//"CommonUtilities.getValudeFromOreference" is the method created by me to get value from savedPreferences.
String notificationId = CommonUtilities.getValueFromPreference(context, Global.NOTIFICATION_ID, "0");
int notificationIdinInt = Integer.parseInt(notificationId);
notificationManager.notify(notificationIdinInt, notification);
// will increment notification id for uniqueness
notificationIdinInt = notificationIdinInt + 1;
CommonUtilities.saveValueToPreference(context, Global.NOTIFICATION_ID, notificationIdinInt + "");
//Above "CommonUtilities.saveValueToPreference" is the method created by me to save new value in savePreferences.
如果您需要更多详细信息或任何查询,请与我们联系。 :)