是否可以查询
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’是一个只写界面.