安卓闹钟问题
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
google 的简单回答:
如果您需要使用您提到的日期,创建一个 Time 对象,使用其构造函数设置字段并使用 time.toMillis( false);为警报管理器获取正确的参数。
问候,
史蒂芬
Easy answer from google :
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