安卓闹钟问题

发布于 2024-11-17 06:46:24 字数 128 浏览 2 评论 0原文

我正在 Android 上制作一个简单的提醒应用程序。

我有一个日期,例如 2011 年 6 月 27 日 (DD-MM-YY),我希望在该日期(凌晨 12:01)创建警报。

我知道这是可能的,但这有多容易呢?

I'm making a simple reminder app on android.

I've got a date such as 27-06-2011 (DD-MM-YY) and I wish to create an alarm at this date (at 12:01AM).

I know this is possible, but how easy is it?

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

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

发布评论

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

评论(1

梦过后 2024-11-24 06:46:24

google 的简单回答:

Intent intent = new Intent(this, RepeatingAlarmReceiver.class);
PendingIntent pendingIntent = PendingIntent.getBroadcast(context, REQUEST_CODE, intent, 0);

AlarmManager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);
alarmManager.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + (5 * 1000), 10 * 1000, pendingIntent);
Toast.makeText(this, "Alarm set", Toast.LENGTH_LONG).show();

如果您需要使用您提到的日期,创建一个 Time 对象,使用其构造函数设置字段并使用 time.toMillis( false);为警报管理器获取正确的参数。

问候,
史蒂芬

Easy answer from google :

Intent intent = new Intent(this, RepeatingAlarmReceiver.class);
PendingIntent pendingIntent = PendingIntent.getBroadcast(context, REQUEST_CODE, intent, 0);

AlarmManager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);
alarmManager.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + (5 * 1000), 10 * 1000, pendingIntent);
Toast.makeText(this, "Alarm set", Toast.LENGTH_LONG).show();

If you need to use the date you mentionned, create a Time objet, set the fields using its constructor and use time.toMillis( false); to get the right paramter for the alarm manager.

Regards,
Stéphane

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