我试图实现的是像#2(“USB 调试已连接”)这样的通知:
在单独的行上显示标题和描述。
但是,当我创建一个通知通道时
NotificationChannel(channelId, channelName, NotificationManager.IMPORTANCE_MIN)
,它将显示为通知#3 - 与同一行上的标题折叠 - 无论通知本身的优先级如何(priority = NotificationCompat.PRIORITY_MIN
或priority = NotificationCompat.PRIORITY_HIGH
)
如果频道重要性增加到LOW
NotificationChannel(channelId, channelName, NotificationManager.IMPORTANCE_LOW)
或高于通知显示为正常通知#1(“同步正在运行”)
如何显示扩展的静默通知?我还尝试设置其他选项,例如setSound(null, null)
等,但它们也不起作用。