Как отобразить уведомление в группе с помощью SetGroup () в Android? - PullRequest
0 голосов
/ 02 июля 2019

Я пытался использовать "0" идентификатор уведомления, а также уникальный идентификатор уведомления. Также используется setGroup (), как показано ниже. Он по-прежнему генерирует новое уведомление каждый раз. Я хочу объединить тело уведомления и установить заголовок как общий.

class MyFirebaseMessagingService : FirebaseMessagingService() {

override fun onMessageReceived(remoteMessage: RemoteMessage?) {
    super.onMessageReceived(remoteMessage)

    remoteMessage?.let {
        sendNotification(it.data["alert"])
    }
}

private fun sendNotification(messageBody: String?) {

    val channelId = "${this.packageName}-${this.getString(R.string.app_name)}"

    val defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION)

    val builder = NotificationCompat.Builder(this, channelId).apply {
        setDefaults(Notification.DEFAULT_ALL)
        setSmallIcon(if (Build.VERSION.SDK_INT >= 21) R.mipmap.ic_launcher else R.mipmap.ic_launcher_round)
        setContentTitle(getString(R.string.app_name))
        setContentText(messageBody)
        setDefaults(NotificationCompat.DEFAULT_SOUND or NotificationCompat.DEFAULT_VIBRATE or NotificationCompat.DEFAULT_LIGHTS)
        setStyle(NotificationCompat.BigTextStyle().bigText(messageBody))
        priority = NotificationCompat.PRIORITY_DEFAULT
        setAutoCancel(true)
        setSound(defaultSoundUri)
        setGroup(getString(R.string.app_name))
        setGroupSummary(true)
    }

    val manager = getSystemService(NOTIFICATION_SERVICE) as? NotificationManager
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        val channel = NotificationChannel(channelId, getString(R.string.default_channel_name), NotificationManager.IMPORTANCE_HIGH)
        manager?.createNotificationChannel(channel)
    }

    val intent = Intent(this, DashboardFlowActivity::class.java)
    intent.putExtra(DashboardFlowActivity.ISFROMNOTIFICATION, true)
    intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK
    val pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_ONE_SHOT)
    builder.setContentIntent(pendingIntent)

    //manager?.cancelAll()

    manager?.notify(this.getString(R.string.app_name), getID(), builder.build())
}
}

private val c = AtomicInteger(0)
private fun getID(): Int {
   return c.incrementAndGet()
}

Что-то я здесь не так делаю? Кроме того, я прошел через этот ответ. setgroup () в уведомлении не работает

1 Ответ

0 голосов
/ 03 июля 2019

Наконец-то я получил решение этого вопроса, используя https://stackoverflow.com/a/41114135/6021469, https://www.developer.com/ws/android/creating-bundled-notifications-with-android.html

class MyFirebaseMessagingService : FirebaseMessagingService() {

override fun onMessageReceived(remoteMessage: RemoteMessage?) {
    super.onMessageReceived(remoteMessage)

    remoteMessage?.let {
        sendNotification(it.data["alert"])
    }
}

private fun sendNotification(messageBody: String?) {

    val channelId = "${this.packageName}-${this.getString(R.string.app_name)}"

    val defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION)

    val builder = NotificationCompat.Builder(this, channelId).apply {
        setDefaults(Notification.DEFAULT_ALL)
        setSmallIcon(if (Build.VERSION.SDK_INT >= 21) R.mipmap.ic_launcher else R.mipmap.ic_launcher_round)
        setContentTitle(getString(R.string.app_name))
        setShowWhen(true)
        setContentText(messageBody)
        setDefaults(NotificationCompat.DEFAULT_SOUND or NotificationCompat.DEFAULT_VIBRATE or NotificationCompat.DEFAULT_LIGHTS)
        setStyle(NotificationCompat.BigTextStyle().bigText(messageBody))
        priority = NotificationCompat.PRIORITY_DEFAULT
        setAutoCancel(true)
        setShowWhen(true)
        setSound(defaultSoundUri)
        setGroup(getString(R.string.app_name))
    }

    val builderSummary = NotificationCompat.Builder(this, channelId).apply {
        setDefaults(Notification.DEFAULT_ALL)
        setSmallIcon(if (Build.VERSION.SDK_INT >= 21) R.mipmap.ic_launcher else R.mipmap.ic_launcher_round)
        setContentTitle(getString(R.string.app_name))
        setShowWhen(true)
        setContentText(messageBody)
        setDefaults(NotificationCompat.DEFAULT_SOUND or NotificationCompat.DEFAULT_VIBRATE or NotificationCompat.DEFAULT_LIGHTS)
        setStyle(NotificationCompat.BigTextStyle().bigText(messageBody))
        priority = NotificationCompat.PRIORITY_DEFAULT
        setAutoCancel(true)
        setShowWhen(true)
        setSound(defaultSoundUri)
        setGroup(getString(R.string.app_name))
        setGroupSummary(true)
    }

    val manager = getSystemService(NOTIFICATION_SERVICE) as? NotificationManager
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        val channel = NotificationChannel(channelId, getString(R.string.default_channel_name), NotificationManager.IMPORTANCE_HIGH)
        manager?.createNotificationChannel(channel)
    }

    val intent = Intent(this, DashboardFlowActivity::class.java)
    intent.putExtra(DashboardFlowActivity.ISFROMNOTIFICATION, true)
    intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK
    val pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_ONE_SHOT)
    builder.setContentIntent(pendingIntent)


    manager?.notify(this.getString(R.string.app_name), getID(), builder.build())
    manager?.notify(this.getString(R.string.app_name), 0, builderSummary.build())
  }
}

private val c = AtomicInteger(0)
private fun getID(): Int {
   return c.incrementAndGet()
}
...