Как составлять или группировать уведомления Firebase Cloud Messaging в стиле WhatsApp - PullRequest
0 голосов
/ 26 августа 2018

Я изо всех сил пытаюсь разместить мои уведомления FCM таким же образом, как и для WhatsApp:

1) Отображается последнее сообщение для определенной комнаты с обновленным счетчиком всех непрочитанных сообщений.

2) Обозначение отдельных групп пункта 1 для уведомлений для разных комнат.

Я провел несколько часов, рассматривая различные вопросы SO, и эта самая близкая мнеприйти к поиску ответа.Проблема заключается в том, что я использую полезную нагрузку данных, а не уведомления, и не похоже, что свойство «тег» работает для полезной нагрузки данных.

В настоящее время поведение показывает, что отображаются только последние уведомления, переопределяяпредыдущий.

Вот метод sendNotification () в моем FirebaseMessagingService

private void sendNotification(RemoteMessage remoteMessage) {
        //Intent intent = new Intent(this, StudentChatActivity.class);
        String clickAction = remoteMessage.getData().get("click_action");
        Intent intent = new Intent(clickAction);
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

        String roomID = remoteMessage.getData().get("ROOMID");
        String origin = remoteMessage.getData().get("ORIGIN");
        String msgID = remoteMessage.getData().get("MSGID");
        Log.d(TAG, "Message data payload, roomID: " + roomID);


        intent.putExtra("ROOMID", roomID);
        intent.putExtra("USERID", UserID);
        intent.putExtra("USERNAME", UserName);
        intent.putExtra("ORIGIN", origin);

        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
                PendingIntent.FLAG_ONE_SHOT);

        String channelId = getString(R.string.received_message);
        Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
        NotificationCompat.Builder notificationBuilder =
                new NotificationCompat.Builder(this, channelId)
                        .setSmallIcon(R.drawable.small_pickle)
                        .setContentTitle("FCM Message")
                        .setContentText(remoteMessage.getData().get("body"))
                        .setPriority(1)
                        .setAutoCancel(true)
                        .setSound(defaultSoundUri)
                        .setContentIntent(pendingIntent);

        NotificationManager notificationManager =
                (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

        // Since android Oreo notification channel is needed.
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            NotificationChannel channel = new NotificationChannel(channelId,
                    "Channel human readable title",
                    NotificationManager.IMPORTANCE_HIGH);
            notificationManager.createNotificationChannel(channel);
        }



        Log.d(TAG, "Noification ID: " + notify_no);
        notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
    }
...