Reputation: 4578
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
Upvotes: 0
Views: 411
Reputation: 12045
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
Upvotes: 3