gpt4 book ai didi

android - 持续通知

转载 作者:行者123 更新时间:2023-11-29 15:33:09 25 4
gpt4 key购买 nike

我正在尝试创建一个通知,该通知将出现在通知栏的“正在进行”区域(如 WeatherBug)。

这是我使用的代码:

PendingIntent intent = PendingIntent.getActivity(lastContext, 0, notifyIntent, PendingIntent.FLAG_UPDATE_CURRENT | Notification.FLAG_ONGOING_EVENT | Notification.FLAG_NO_CLEAR)

据我了解,FLAG_NO_CLEAR,也应该防止通过按下清除按钮清除通知,这也不起作用

有什么建议吗?

最佳答案

这是因为您在错误的地方使用了标志。

你应该这样做:

notification.flags |= Notification.FLAG_ONGOING_EVENT | Notification.FLAG_NO_CLEAR;

在创建 Notification 对象之后和调用 NotificationManager#notify 之前

关于android - 持续通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3507667/

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