Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developing an app that checks several conditions during an incoming phone call. The main parts of the app are a BroadcastReceiver listening for Intents related to the phone's status and a local Service checking the conditions.

At the moment the service is started each time an incoming call is detected and is stopped when the phone status changed back to idle.

Now I'm wondering if this procedure is correct and whether it is reasonable to start and stop the service related to the phone's status. Or would it be better to let the service run regardless of the phone's status and bind/unbind to/from it when needed.

Are there any performance issues I would have to think about? Perhaps it is more expensive to start/stop a service than letting it run and communicate with it. Are there any best practices out there regarding the implementation of services?

share|improve this question

1 Answer

up vote 5 down vote accepted

Or would it be better to let the service run regardless of the phone's status and bind/unbind to/from it when needed.

Please don't. It will just take up RAM for no good reason. It is everlasting services like this that cause users to attack developers with task killers.

Are there any best practices out there regarding the implementation of services?

Here are two of my posts on the subject, for what they're worth.

share|improve this answer
Also: when an Activity binds to a Service, the Service lives as long as there are bonds to it. When the last Activity unbinds the Service finishes(). – MrSnowflake Mar 30 '10 at 13:39
1  
That assumes it's a bind/unbind pattern, which does not work with BroadcastReceiver. A BroadcastReceiver needs to use start/stop -- it cannot bind (let alone unbind). Hence, I was assuming the OP meant to start the service and leave the service running. – CommonsWare Mar 30 '10 at 13:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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