安卓任务调度
我正在尝试编写一个应用程序,该应用程序将根据一天中的时间执行任务。示例:现在是中午,发送提醒去吃午饭。有人知道如何做到这一点吗?
我可以根据计时器安排任务,但这并不是我想要的。
谢谢
I'm trying to write an application that will execute a task based on the time of day. Example: it's noon, send a reminder to go to lunch. Anyone know how to accomplish this?
I can schedule tasks based on a timer, but that's not exactly what I'm looking for.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 AlarmManager,特别是: http://developer.android.com/reference/android/app/AlarmManager.html#set%28int,%20long,%20android.app.PendingIntent%29
Use the AlarmManager, specifically: http://developer.android.com/reference/android/app/AlarmManager.html#set%28int,%20long,%20android.app.PendingIntent%29