gpt4 book ai didi

android - 通知中的 setgroup() 不起作用

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:53:39 26 4
gpt4 key购买 nike

我正在尝试创建通知组,这是我的代码:

 // Build the notification, setting the group appropriately
Notification notif = new NotificationCompat.Builder(getApplicationContext())
.setContentTitle("New mail from " + 1)
.setContentText("cv")
.setSmallIcon(R.drawable.rh_logo)
.setStyle(new NotificationCompat.InboxStyle()
.addLine("Alex Faaborg Check this out")
.addLine("Jeff Chang Launch Party")
.setBigContentTitle("2 new messages")
.setSummaryText("johndoe@gmail.com"))
.setGroup(GROUP_KEY_EMAILS)
.setGroupSummary(true)
.build();

// Issue the notification



NotificationManager notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(++NOTIFICATION_ID, notif);

当我运行应用程序并发送通知消息时,它们不显示在组中。有人可以向我解释我需要更改的内容吗?

最佳答案

在创建自定义通知之前,您必须先创建一个 通知。就像这样:

NotificationCompat.Builder groupBuilder =
new NotificationCompat.Builder(context)
.setContentTitle(title)
.setContentText(content)
.setGroupSummary(true)
.setGroup("GROUP_1")
.setStyle(new NotificationCompat.BigTextStyle().bigText(content))
.setContentIntent(pendingIntent);

不要忘记将 setGroupSummary 设置为 true。

然后创建您的子通知,组值groupBuilder的值相同。这里是“GROUP_1”。

NotificationCompat.Builder builder =
new NotificationCompat.Builder(context)
.setSmallIcon(R.drawable.ic_stat_communication_invert_colors_on)
.setContentTitle(title)
.setContentText(content)
.setGroup("GROUP_1")
.setStyle(new NotificationCompat.BigTextStyle().bigText(content))
.setContentIntent(pendingIntent)

最后使用NoticationManagerCompat通知他们。

    NotificationManagerCompat manager = NotificationManagerCompat.from(context);
manager.notify(GROUP_ID, groupBuilder.build());
manager.notify(id, builder.build());

关于android - 通知中的 setgroup() 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36058887/

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