检查 AlarmManager 中现有 PendingIntent 的时间

发布于 2025-01-01 22:58:09 字数 397 浏览 2 评论 0原文

是否可以查询 Android AlarmManager 以获取给定 PendingIntent 的下一个警报的时间?我知道我可以使用 .cancel(PendingIntent) 函数取消一项,并且可以使用 .set() 更新一项,但是是否可以“查询”一项?我使用类似这样的方法来查看是否已安排一个:

    PendingIntent sender = PendingIntent.getBroadcast(context, 0, intent, PendingIntent.FLAG_NO_CREATE);

如果发件人 == null,则已安排一个。我真的很想知道“什么时候?”如果可能的话。

我知道当我设置它时,我可以将其保存在数据库或其他位置,但我真的很想查询“官方来源”以确定。可能的?

Is it possible to query the Android AlarmManager for the time of the next alarm for a given PendingIntent? I know I can cancel one using the .cancel(PendingIntent) function, and I can update one using .set(), but is it possible to "query" one? I use something like this to see if one is already scheduled:

    PendingIntent sender = PendingIntent.getBroadcast(context, 0, intent, PendingIntent.FLAG_NO_CREATE);

If sender == null, then one is already scheduled. I'd really like to know "for what time?" if possible.

I know I could save this in a database or other location, when I set it, but I'd really like query "the official source" to be sure. Possible?

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

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

发布评论

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

评论(1

一个人的夜不怕黑 2025-01-08 22:58:09

是否可以查询 Android AlarmManager 以获取给定 PendingIntent 的下一个闹钟的时间?

不幸的是,没有。 “AlarmManager”是一个只写接口。

Is it possible to query the Android AlarmManager for the time of the next alarm for a given PendingIntent?

Unfortunately, no. 'AlarmManager' is a write-only interface.

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