如何将日期列表转换为 AlarmManager?

发布于 2024-12-01 04:59:01 字数 180 浏览 2 评论 0原文

我有一个大约 20 个日期的列表,所有格式都类似于

August 24,2011

我如何创建所有这些日期的列表并将它们设置到警报管理器,

例如...今天是 25,如果 AlarmManager 中的日期是设置为 25,会发出通知。

我该怎么做呢?

I have a list of about 20 dates all formated like

August 24,2011

How would i go about creating a list of all of these dates and setting them to the alarm manager,

So for example... Today is the 25, if a date in the AlarmManager is set to 25, a notification is made.

How would i go about doing this?

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

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

发布评论

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

评论(1

猫九 2024-12-08 04:59:01

首先使用格式化程序转换为日期。然后使用 getTime()< 从日期对象获取时间戳/a>.将时间戳传递给 AlarmManager 并指定 RTCRTC_WAKEUP 闹钟类型。例如:

SimpleDateFormat sdf = new SimpleDateFormat("MMMM dd, yyyy");
Date date = sdf.parse(sdf);
long timestamp = date.getTime();

AlarmManager am = ...;
PendingIntent pi = ...;
am.set(AlarmManager.RTC, timestamp, pi);

请记住,警报不是持久的,因此将警报设置在未来太远是不可靠的:如果用户重新启动您的手机(或终止您的应用程序/服务),警报将被清除。要在重新启动时注册警报,请为 BOOT_COMPLETED 创建广播接收器。

Convert to a date first, using a formatter. Then get the timestamp from the date object using getTime(). Pass the timestamp to AlarmManager and specify the RTC or RTC_WAKEUP alarm type. Something like:

SimpleDateFormat sdf = new SimpleDateFormat("MMMM dd, yyyy");
Date date = sdf.parse(sdf);
long timestamp = date.getTime();

AlarmManager am = ...;
PendingIntent pi = ...;
am.set(AlarmManager.RTC, timestamp, pi);

Do keep in mind that, alarms are not persistent, so setting alarms too far in the future is not reliable: if the user reboots your phone (or kills your app/service), the alarms will be cleared. To register alarms on reboot, create a broadcast receiver for BOOT_COMPLETED.

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