gpt4 book ai didi

Android:从通知栏中删除通知

转载 作者:IT老高 更新时间:2023-10-28 12:56:24 26 4
gpt4 key购买 nike

我创建了一个应用程序,并通过一个事件设法在 android 通知栏中添加通知。现在我需要示例如何从事件的通知栏中删除该通知?

最佳答案

你可以试试这个快速代码

public static void cancelNotification(Context ctx, int notifyId) {
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager nMgr = (NotificationManager) ctx.getSystemService(ns);
nMgr.cancel(notifyId);
}

关于Android:从通知栏中删除通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3595232/

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