Android - 如何在很长一段时间(一个月或更长时间)后发出警报
从 Android 应用程序设置长期警报/提醒的最佳方法是什么?我想在当前日期后几周内显示通知。我相信没有必要为这样的任务编写服务。 AlarmManager 能解决这个问题吗?或者应该每天启动应用程序并进行检查?
倒计时开始后,即将到来的警报应该会在从 Android Market 升级应用程序后继续存在。
What is the best way to set an long-term alert/reminder from an Android application? I'd like to display notification in a few weeks after current date. I believe there is no need to write a service for such task. Will AlarmManager do the trick? Or should application be started daily and performing check?
After countdown was started, upcoming alert should survive upgrading application from Android Market.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 AlarmManager。以下是 CommonsWare 的代码片段和更广泛的代码示例链接。
Use AlarmManager. Here is code snippet and link to wider code example by CommonsWare.