Android - 分离线下面的通知

时间:2016-08-17 23:01:09

标签: android android-notifications

我想知道如何在通知面板中的分隔线下方绘制通知。正如您在此图片中所看到的,Google Now会在那里发布通知。 FB Messenger聊天头通知也在那里。 我查看了文档并尝试了类别,优先级和可见性的各种组合,但没有成功。

有什么想法吗?

enter image description here

1 个答案:

答案 0 :(得分:2)

构建通知时,请将优先级设置为PRIORITY_MIN

示例:

NotificationCompat.Builder nb = new NotificationCompat.Builder( this )
        .setCategory( NotificationCompat.CATEGORY_SERVICE )
        .setContentTitle( mNotificationTitle )
        .setPriority( Notification.PRIORITY_MIN )
        .setContentIntent( launchSettingsIntent )
        .setVisibility( Notification.VISIBILITY_PUBLIC )
        .setSmallIcon( R.drawable.ic_notification );