Sammy
Sammy

Reputation: 4578

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 data from the server every X hours?

Thanks Sam

Upvotes: 0

Views: 411

Answers (2)

Peter Knego
Peter Knego

Reputation: 80340

Register your app with AlarmManager.

Upvotes: 3

peter.bartos
peter.bartos

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

Related Questions