Здесь четко указано , что NotificationManager.IMPORTANCE_HIGH должен быть видим для пользователя как "Срочно", издавать звук и появляться в виде хедз-ап уведомления.
Тем не менее, это не тот случай, так как он отображается как «Высокий» для пользователя и не издает звука или не отображается в виде предупреждения (когда приложение на заднем плане)
Когда я теперь вручную устанавливаю уровень важности «Срочно», он действует так, как должен (отображается как уведомление об ошибке)
Этокакая-то ошибка в Android или это просто ошибка на веб-сайте, так как имеет смысл защищать пользователей от приложений, которые рассылают срочные уведомления без согласия пользователей?
Мой код уведомления выглядит следующим образом (и я проверялэто на Орио):
private fun sendNotification(messageBody: String) {
val intent = Intent(this, MainActivity::class.java)
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
val pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
PendingIntent.FLAG_ONE_SHOT)
val channelId = "channel_id"
val defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION)
val notificationBuilder = NotificationCompat.Builder(this, channelId)
.setSmallIcon(R.drawable.notification)
.setContentTitle("Notification")
.setContentText(messageBody)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent)
val notificationManager = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
// Since android Oreo notification channel is needed.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
val channel = NotificationChannel(channelId,
"Channel human readable title",
NotificationManager.IMPORTANCE_HIGH)
notificationManager.createNotificationChannel(channel)
}
notificationManager.notify(0 /* ID of notification */, notificationBuilder.build())
}