Android: Update some weather Data from server every X hours
What is the best and most efficient way in android to schedule an update for some weather开发者_如何学JAVA data from the server every X hours?
Thanks Sam
If 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
Register your app with AlarmManager.
精彩评论