Огненная база для отправки push-уведомлений - PullRequest
0 голосов
/ 11 ноября 2018

как мы можем решить проблему?

если активность открыта, в уведомлении отображается кнопка, если не просто уведомление

       code :NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, "channel_id")
            .setContentTitle(notification.getTitle())
            .setContentText(notification.getBody())
            .setAutoCancel(true)
            .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
            .setContentIntent(pendingIntent)
            .setContentInfo(notification.getTitle())
            .addAction(R.drawable.ic_call_black_24dp, "Hello click here !", iWeb)
            .setLargeIcon(icon)

enter image description here

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...