Пуш-уведомления Android регистрируются на сообщении «Получено», но не отображаются на устройстве - PullRequest
0 голосов
/ 05 октября 2018

Я отправляю некоторые push-уведомления на android от AWS,

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

 public void onMessageReceived(RemoteMessage remoteMessage) {
    // ...

    // TODO(developer): Handle FCM messages here.

    Log.d("mako", "A From: " + remoteMessage.getFrom());

    // Check if message contains a data payload.
    if (remoteMessage.getData().size() > 0) {
        Log.d("mako", "B Message data payload: " + remoteMessage.getData());

        if (/* Check if data needs to be processed by long-running job */ true) {
            // For long-running tasks (10 seconds or more) use Firebase Job Dispatcher.
//                scheduleJob();

        } else {
            // Handle message within 10 seconds
//                handleNow();

        }

    }

    // Check if message contains a notification payload.
    if (remoteMessage.getNotification() != null) {
        Log.d("mako", "C Message Notification Body: " + remoteMessage.getNotification().getBody());
    }

    // Also if you intend on generating your own notifications as a result of a received FCM
    // message, here is where that should be initiated. See sendNotification method below.
}

Итак, я отправляю тестовое уведомление:

{
"GCM": "{ \"data\": { \"message\": \"test message\" } }"
}

И я вижу в своей консоли журнал теста test:

10-05 14: 57: 08.827 23062-23296 / com.sb.comm D / mako: B Полезная нагрузка данных сообщения: {message = тестовое сообщение}

Но в маленьком всплывающем окне ничего не отображается. Чего не хватает, чтобы отобразить на экране фактическое push-уведомление?

Приветствия

Ответы [ 3 ]

0 голосов
/ 05 октября 2018

Вы должны сгенерировать уведомление на своем устройстве, как это

    public void onMessageReceived(RemoteMessage remoteMessage) {

      NotificationCompat.Builder notificationBuilder = 
         new NotificationCompat.Builder(this)
        .setSmallIcon(R.drawable.ic_notification)
        .setContentTitle("App Name")
        .setBadgeIconType(R.drawable.ic_notification)
        .setLargeIcon(BitmapFactory.decodeResource(
         getResources(),R.drawable.ic_notification))
        .setContentIntent(pendingIntent)
        .setAutoCancel(true)
        .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
         .setContentText(remoteMessage.getData().get("body"));



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

            notificationManager.notify(141, notificationBuilder.build());
        }

Здесь Notification Builder получит данные из полезной нагрузки вашего сервера и сгенерирует уведомление на устройстве.

0 голосов
/ 05 октября 2018

Оказывается, это было связано с форматированием тела, это не так, как предлагает >>> SNS "Генератор сообщений JSON"

тело должно быть в следующем формате:

{
"GCM": "{ \"notification\": { \"text\": \"test message\" } }"
}
0 голосов
/ 05 октября 2018

добавьте эти строки кода, чтобы отобразить уведомление на панели уведомлений.

 Intent intent = new Intent(this, YourActivity.class);
 PendingIntent resultPendingIntent = stackBuilder.getPendingIntent(0, 
 PendingIntent.FLAG_UPDATE_CURRENT);
    NotificationCompat.Builder notificationBuilder = new 
    NotificationCompat.Builder(this, "my_chanel_id");
    notificationBuilder.setSmallIcon(R.drawable.ic_launcher_app);
    notificationBuilder.setContentTitle("Titlee");
    notificationBuilder.setContentText("anyText");
    notificationBuilder.setAutoCancel(true);
    notificationBuilder.setSound(uri);
    notificationBuilder.setContentIntent(resultPendingIntent);
    NotificationManager notificationManager = (NotificationManager) 
    getSystemService(Context.NOTIFICATION_SERVICE);
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        String CHANNEL_ID = "my_channel_01";// The id of the channel.
        int importance = NotificationManager.IMPORTANCE_HIGH;
        NotificationChannel mChannel = new NotificationChannel("mychanelId", 
           "hyperlocal", importance);
        notificationManager.createNotificationChannel(mChannel);
    }
    notificationManager.notify(message_id, notificationBuilder.build());
...