我如何以编程方式获取下一次特定设置的闹钟设置为关闭的时间?

发布于 2024-10-04 02:20:13 字数 237 浏览 5 评论 0原文

我目前正在通过以下方式设置闹钟..

//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 技术交流群。

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

发布评论

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

评论(1

朦胧时间 2024-10-11 02:20:13

警报可以读取,但没有记录。在大多数 Android 设备上,它将位于内容提供程序中:

content://com.android.alarmclock/alarm
content://com.android.deskclock/alarm

尽管许多 OEM 创建了自己的警报提供程序,例如:

content://com.htc.android.alarmclock/alarm

在 HTC 手机上。

Alarms can be read, but it is undocumented. On most android devices it will be in the content provider:

content://com.android.alarmclock/alarm
content://com.android.deskclock/alarm

Although many OEMs create there own alarm providers, e.g:

content://com.htc.android.alarmclock/alarm

on HTC phones.

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