gpt4 book ai didi

android - 如何查找通知 ID?

转载 作者:行者123 更新时间:2023-11-29 00:53:59 25 4
gpt4 key购买 nike

如何获取要清除的标题或通知 ID。我的应用程序产生多个通知。

API 为 19。

使用 NotificationListenerService 有用吗?

最佳答案

是的,您可以使用 NotificationListenerService 中的 getActiveNotifications 获取所有 Activity 通知。

StatusBarNotification[] activeNotifications = service.getActiveNotifications();

然后遍历可用的通知并使用 getId()

if(activeNotifications!=null){

for(StatusBarNotification notification : activeNotifications ){

if (notification.getId() == ID_TO_CHECK) {
// do your operation
}

}
}

关于android - 如何查找通知 ID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56653126/

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