Как ответить нужному пользователю и обновить нужное уведомление.
Когда сообщение отправлено, приложение создает уведомление с помощью notification -> id
= id(from sender)
, чтобы сделать разные уведомления для каждого пользователя, отправляющего сообщение. Это хорошая реализация? И как вы порекомендуете решить, когда я отвечу на некоторые из этих уведомлений, чтобы ответить нужному пользователю и обновить правильное уведомление. Я думаю, что мне нужно использовать тот же идентификатор и для кода запроса, но работать только для последнего полученного уведомления, потому что последнее полученное сообщение перезаписывает notification -> id
. Могу ли я взять идентификатор из уведомления в тот момент, когда я нажимаю на ответ, и использовать его как код запроса. Можете ли вы предложить мне или привести пример, может быть, я не думаю, что правильный путь.
id = userID
requestCode = userID
public static void setAndUpdateNotificationMessage(Context context, CharSequence[] history, CharSequence message, CharSequence title) {
String replyLabel = ("Your message here...");
RemoteInput remoteInput = new RemoteInput.Builder(KEY_TEXT_REPLY)
.setLabel(replyLabel)
.build();
Intent replyIntent = new Intent(context, NotificationBroadcastReceiver.class);
// replyIntent.putExtra(KEY_MESSAGE_ID, 1);
replyIntent.setAction(REPLY_ACTION);
replyIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
PendingIntent replyPendingIntent =
PendingIntent.getBroadcast(context,
requestCode,
replyIntent,
PendingIntent.FLAG_UPDATE_CURRENT);
NotificationCompat.Action action =
new NotificationCompat.Action.Builder(R.drawable.ic_reply_icon,
("Reply"), replyPendingIntent)
.addRemoteInput(remoteInput)
/*for wear watch notification*/
.setAllowGeneratedReplies(true)
/*for wear watch notification*/
.build();
NotificationCompat.Builder builder = new NotificationCompat.Builder(context, CHANNEL_ID)
.setSmallIcon(R.drawable.ic_stat_name)
.setContentTitle(title)
.setContentText(message)
.addAction(action)
.setGroup(GROUP_KEY_WORK_EMAIL)
.setPriority(Notification.PRIORITY_DEFAULT);
if(history != null) {
builder.setRemoteInputHistory(history);
}
NotificationManagerCompat notificationManager = NotificationManagerCompat.from(context);
notificationManager.notify(id, builder.build());