gpt4 book ai didi

android - 带有 setGroupSummary(true) 的通知在 Android N 中不可见

转载 作者:塔克拉玛干 更新时间:2023-11-02 18:59:41 25 4
gpt4 key购买 nike

尝试以集群格式显示 3 个通知。根据文档,我为第一个通知添加了 setGroupSummary(true) 属性。但结果我只收到了两个通知。添加了 GroupSummary 属性的通知是不可见的。

NotificationCompat.Builder firstNotification = createNotification(context,"1.Message","Here you go 1");
firstNotification .setGroupSummary(true);
firstNotification .setGroup("KEY_NOTIFICATION_GROUP");
NotificationCompat.Builder secondNotifi = createNotification(context,"2.Message","Here you go 2");
secondNotifi .setGroup("KEY_NOTIFICATION_GROUP");
NotificationCompat.Builder thirdNotifi= createNotification(context,"3.Message","Here you go 3");
thirdNotifi.setGroup("KEY_NOTIFICATION_GROUP");

这里是通知触发器,

notificationManager =   (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0,firstNotification .build());
notificationManager.notify(1,secondNotifi .build());
notificationManager.notify(2,thirdNotifi.build());

结果是,enter image description here

我想以集群格式显示所有三个通知而不丢失。

任何帮助将不胜感激。

最佳答案

您应该检查以下答案: setgroup() in notification not working

您必须创建一个单独的组通知并仅为该组通知设置组摘要标志为 true,这将成为父级通知,将其他通知与自身内的相同组键 bundle 在一起。

关于android - 带有 setGroupSummary(true) 的通知在 Android N 中不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38097442/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com