我有ArrayList
从数据库中查询的对象,并且我想通知我的所有对象以在用户触摸通知时将其删除。
我将我的对象的每个 id 放入意图并开始意图删除它,但问题是当我触摸通知时,第一项的 id 是正确的,但其他的不是它仍然是第一个 id。
这是代码
for(int i=0;i<listItem.size();i++){
String message = "Remove \""+listItem.get(i).getName()+"\" "+listItem.get(i).getID();
intent.putExtra("id", listItem.get(i).getID());
String s = intent.getExtras().getString("ID");
Toast.makeText(getApplicationContext(),"id : "+s, Toast.LENGTH_SHORT).show();
Notification notification = new Notification(R.drawable.icon_noti,message,new Date().getTime());
PendingIntent pI = PendingIntent.getActivity(getApplicationContext(), 1, intent, PendingIntent.FLAG_UPDATE_CURRENT);
notification.flags = Notification.FLAG_AUTO_CANCEL;
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notification.setLatestEventInfo(getApplicationContext(), message, "Touch to remove" , pI);
notification.sound = soundUri;
notificationManager.notify(i,notification);
}