我收到范围为1-10的多个本地通知。
我正在收到有关其内容和标题的通知..但是当我点击通知时,只有第一个通知打开,当我点击休息时,通知消失,它显示活动但内容保持与第一个通知之一相同。这是我的代码
点击通知我应用了此代码
Intent intent1 = new Intent(context, Message_activity.class);
intent1.putExtra("randomStr", randomStr);
intent1.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pndng = PendingIntent.getActivity(context, id, intent1, PendingIntent.FLAG_UPDATE_CURRENT);
在消息活动中得到这样的结果
String message = getIntent().getStringExtra("randomStr");
Log.e("randomStrrandomStr", getIntent().getStringExtra("randomStr"));
fullmsg.setText(message);
请提前提出建议
答案 0 :(得分:0)
我通过notify
的{{1}}方法通知您每次通知时,我都使用相同的ID。因此,每次拨打NotificationManager
时,请尝试使用不同的ID。