java – 检查AlarmManager中现有PendingIntent的时间

前端之家收集整理的这篇文章主要介绍了java – 检查AlarmManager中现有PendingIntent的时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以查询 Android AlarmManager以查看给定PendingIntent的下一次警报的时间?我知道我可以使用.cancel(PendingIntent)函数取消一个,我可以使用.set()更新一个,但是可以“查询”一个吗?我使用这样的东西来看看是否已经安排了一个:
PendingIntent sender = PendingIntent.getBroadcast(context,intent,PendingIntent.FLAG_NO_CREATE);

如果sender == null,则已经安排了一个.我真的很想知道“什么时间?”如果可能的话.

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

解决方法

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

很不幸的是,不行. ‘AlarmManager’是一个只写界面.

原文链接:https://www.f2er.com/java/121312.html

猜你在找的Java相关文章