vote up 0 vote down star

I'm not sure which is these is appropriate for my current application.

I need to switch wallpaper on a given, but user changeable, interval. I've been using a BroadcastReceiver to check every minute, but then I saw this question.

Is there any particular advantage to one method over another? Right now I've got to keep a service alive to receive the broadcast, but would using alarms obviate that?

flag

1 Answer

vote up 1 vote down check

Yes, using AlarmManager would mean you would not need to keep a service in memory all of the time. This is A Very Good Thing. ;-)

link|flag
Thanks! I'm pretty new to Java and didn't even know about the AlarmManager. Your help is very appreciated. – KFB Nov 9 at 15:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.