I'm writing a simple alarm clock app to introduce myself further to android development.

I've looked at the android tutorials for alarms; for starting services and activities. In my case I want to set an alarm time, then start something that runs for say 1/2 hour after the alarm is fired.

During this 1/2 hour there will be background tasks happening but also on-screen information being displayed.

I am mostly curious as to what is best practice in this case. Should I run the background tasks as a service and the foreground as an activity? As the on screen activity is running at the same time as the background tasks would it be better just to run it all in an activity?

Cheers!

link|improve this question

64% accept rate
feedback

1 Answer

I'd say the best way is the way Google does it. Take a look.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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