Is there a good sample application for creating android services that run in the background?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Well, I don't know any apart from my own application. But that is real applications with all the extra code that comes with it and not sample as such.

If you still want to have a go you I suggest you look for Service_Intend and Service_Connection in Calculator_Activity.java and for Calculator_Thread and Binder in Calculator_Service.java. That should give you some idea.

link|improve this answer
feedback

The Android API Demos include a Remote Service sample. I think we used it as the starting point for our background service. There is also example code right in the documentation for the Service class.

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.