如何设置安卓提醒/闹钟?

发布于 2024-08-19 22:12:25 字数 87 浏览 7 评论 0原文

我有一些时间以 ISO 格式存储。其中一些时间在另一列中标记为 1(开启)或 0(关闭)设置。我需要在标记为 1 的时间设置提醒,但如何将每个日期传递给提醒类?

I have got some times stored in ISO format. Some of these times are flagged to either 1(on) or 0(off) set in another column. I need to set a reminder at the times flagged to 1, but how would I pass that each date to the reminder class?

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

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

发布评论

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

评论(2

叫嚣ゝ 2024-08-26 22:12:25

闹钟应用程序没有公共 API。

日历应用程序没有公共 API,但由于它是 Google 日历的本机 UI,因此您可以通过其 GData API 将事件推送到 Google 日历。

There is no public API for the Alarm Clock application.

There is no public API for the Calendar application, though since it is a native UI for a Google Calendar, you could push an event over to the Google Calendar via its GData API.

爱的十字路口 2024-08-26 22:12:25
ContentValues reminderContentValues = new ContentValues();
reminderContentValues.put(FIELD_REMINDER_EVENT_ID, eventId);    
reminderContentValues.put(FIELD_REMINDER_METHOD, 1);    
reminderContentValues.put(FIELD_REMINDER_MIN, minutesBefore);   
mContext.getContentResolver().insert(getRemindersUri(), reminderContentValues);
ContentValues reminderContentValues = new ContentValues();
reminderContentValues.put(FIELD_REMINDER_EVENT_ID, eventId);    
reminderContentValues.put(FIELD_REMINDER_METHOD, 1);    
reminderContentValues.put(FIELD_REMINDER_MIN, minutesBefore);   
mContext.getContentResolver().insert(getRemindersUri(), reminderContentValues);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文