我正在android中开发事件提醒应用程序。在我的应用程序中,用户可以设置事件时间,并在指定时间生成状态栏通知。但在我的应用程序中,它在状态栏中多次生成相同的通知(通知 ID)。请帮助我如何避免这种情况?
PendingIntent contentIntent = PendingIntent.getActivity(context, 0,i, PendingIntent.FLAG_ONE_SHOT);
notification = new Notification(R.drawable.logo, "Notification",System.currentTimeMillis());
notification.setLatestEventInfo(context,strText, "@"+strDate+ strCorrectTime,contentIntent);
notification.defaults |= Notification.DEFAULT_VIBRATE;
notification.defaults|=Notification.DEFAULT_ALL;
mNotificationManager.notify(Integer.parseInt(intent.getExtras().get("NotifyCount").toString()), notification);
这是编码..