Android:每 X 小时从服务器更新一些天气数据
android中安排每X小时从服务器更新一些天气数据的最佳和最有效的方法是什么?
谢谢 山姆
What is the best and most efficient way in android to schedule an update for some weather data from the server every X hours?
Thanks
Sam
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您询问调度系统,一个好方法是使用AlarmManager,即使您的活动没有运行,它也可以唤醒您的活动。
以下是一些信息: http://developer.android.com/reference/android/ app/AlarmManager.html
这是一个关于
Notification
的很好的例子:http://android.arnodenhond.com/tutorials/alarm-notificationIf you are asking about scheduling system, a good way is using
AlarmManager
, which can wake up your activity even if it is not running.Here is some info: http://developer.android.com/reference/android/app/AlarmManager.html
And here a nice example with
Notification
: http://android.arnodenhond.com/tutorials/alarm-notification使用 AlarmManager 注册您的应用。
Register your app with AlarmManager.