0

我试图实现的是像#2(“USB 调试已连接”)这样的通知:
在单独的行上显示标题和描述。

但是,当我创建一个通知通道时
NotificationChannel(channelId, channelName, NotificationManager.IMPORTANCE_MIN),它将显示为通知#3 - 与同一行上的标题折叠 - 无论通知本身的优先级如何(priority = NotificationCompat.PRIORITY_MINpriority = NotificationCompat.PRIORITY_HIGH

如果频道重要性增加到LOW
NotificationChannel(channelId, channelName, NotificationManager.IMPORTANCE_LOW)或高于通知显示为正常通知#1(“同步正在运行”)

如何显示扩展的静默通知?我还尝试设置其他选项,例如setSound(null, null)等,但它们也不起作用。

在此处输入图像描述

4

1 回答 1

0

可能您的意思是通知样式?

NotificationCompat.Builder builder;
....
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M)
        builder.setStyle(new NotificationCompat.BigTextStyle());
于 2019-12-12T08:29:53.397 回答