我如何以编程方式获取下一次特定设置的闹钟设置为关闭的时间?
我目前正在通过以下方式设置闹钟..
//set the alarm
alarm.set(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), pendingintent);
我似乎没有看到 AlarmManager
方法可以让我获取
设置闹钟的时间...有没有办法从我的应用程序的其他地方做到这一点?
i'm currently setting the alarm via the following..
//set the alarm
alarm.set(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), pendingintent);
i don't seem to see an AlarmManager
method that allows me to get
the time of that set alarm... Is there a way to do it from somewhere else in my app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
警报可以读取,但没有记录。在大多数 Android 设备上,它将位于内容提供程序中:
尽管许多 OEM 创建了自己的警报提供程序,例如:
在 HTC 手机上。
Alarms can be read, but it is undocumented. On most android devices it will be in the content provider:
Although many OEMs create there own alarm providers, e.g:
on HTC phones.