如何创建多个 PendingIntent?我有几个通知,当用户按下最后一个时,一切正常,但点击通知没有响应。我的代码是:
Intent notificationIntent = new Intent(context, MainActivity.class);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK).setAction("ShowDialog");
notificationIntent.putExtra("args", Tools.getInstance().generateBundle(progressId, lastId));
notificationBuilder.setContentIntent(PendingIntent.getActivity(context, 0, notificationIntent, PendingIntent.FLAG_CANCEL_CURRENT));
我想原因是 FLAG_CANCEL_CURRENT,但是 PendingIntent 的所有标志都不能解决我的问题。