Android-DeleteIntent,如何使用?

发布于 2024-11-15 14:45:47 字数 252 浏览 3 评论 0原文

目前,我的 Android 应用程序中有一个通知,该通知具有 PendingIntent,因此单击它时会打开一个活动。

我目前保留了一个通知计数器,类似于本机未接来电通知。

单击通知时,我可以将此计数器重置为 0。

当用户选择“清除所有通知”按钮时,我还想将计数器重置为 0。我进行了搜索,发现执行此操作的方法是使用DeleteIntent。

但我不知道如何将其与我的 PendingIntent 一起使用,有人可以帮助我吗?

I currently have a notification in my Android application that has a PendingIntent so that when it is clicked an activity is opened.

I currently keep a counter for the notification, similar to the native missed calls notification.

I can reset this counter to 0 when the notification is clicked.

I also want to reset the counter to 0 when the user selects the "Clear all notifications" button. I have done a search and seen the way to do this is to use the DeleteIntent.

But I cant figure out how to use this alongside my PendingIntent, can anyone help me out?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

决绝 2024-11-22 14:45:47

创建广播或服务 PendingIntent,指向将重置计数器的 BroadcastReceiverIntentService,并关联该 PendingIntent > 通过 deleteIntent 使用您的通知

Create a broadcast or service PendingIntent, pointing to a BroadcastReceiver or IntentService that will reset your counter, and associate that PendingIntent with your Notification via deleteIntent.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文