How do I check if a background service (on Android) is running? I want an android activity that toggles the state of the service -- lets me turn it on if it is off and off if it is on.
|
|
I had the same problem not long ago. Since my service was local, I ended up simply using a static field in the service class to toggle state, as described by hackbod here: |
|||||||||||||
|
|
I use following from inside an activity:
This works reliably because it is based on the information about running services provided by the Android operating system through ActivityManager#getRunningServices. All the approaches using onDestroy or onSometing events or Binders or static variables will not work reliably because as a developer you never know, when Android decides to kill you process or which of the mentioned callbacks are called or not. Please note the "killable" column in the lifecycle events table in Android documentation. |
|||||||||||||||||||||
|
|
Got it! You MUST call
And now the ServiceTools class:
|
||||
|
|
|
You can use this (i didnt try this yet, but hope this works)
the startService method return a ComponentName object, if there is an already running service, if not null will returned. This is not like checking i think, because its starting the service, so you can add |
|||||||||||
|
|
I would like to propose a small complement to this old thread. My goal is to know wether a service is running without actualy running it if it is not running. Calling bindService or calling an intent that can be caught by the service is not a good idea then as it will start the service if it is not running. So, as miracle2k suggested, the best is to have a static field in the service class to know whether the service has been started or not. To make it even cleaner, I suggest to transform the service in a singleton with a very very lazy fetching : i.e the is no istanciation at all of the singleton instance through static methods. The static getInstance method of your service/singleton just return the instance of the singleton if it has been created. But it doesn't actualy start or instanciate the singleton itself. The service is only started through normal service start methods. It would then be even cleaner to modify the singleton design pattern to rename the confusing getInstance method into something like isInstanceCreated() : boolean method. The code will look like :
This solution is elegant but only relevant if you have access to the service class and only for classes iside the app/package of the service. If your classes are outside of the service app/package then you could query the ActivityManager with limitations underlined by Pieter-Jan Van Robays. |
|||||||||||||||
|
|
This works too:
|
|||
|
|
|
onDestroy isn't always called in the service so this is useless! IE: Just run the app again with one change from Eclipse. The application is forcefully exited using SIG: 9. Kevin |
|||
|
|
|
You can query the intent, which service? This is worth reading.. well basically all android dev docs. |
|||
|
|
|
First of all you musn't try to reach the service by using the ActivityManager. (Discussed here) Services can run on their own, be bound to an Activity or both. The way to check in an Activity if your Service is running or not is by making an interface (that extends Binder) where you declare methods that both, the Activity and the Service, understand. You can do this by making your own Interface where you declare for example "isServiceRunning()". You can then bind your Activity to your Service, run the method isServiceRunning(), the Service will check for itself if it is running or not and returns a boolean to your Activity. You can also use this method to stop your Service or interact with it in another way. I used this tutorial to learn how to Implement this scenario in my application. |
|||||
|
|
This applies more towards Intent Service debugging since they spawn a thread, but may work for regular services as well. I found this thread thanks to Binging In my case, I played around with the debugger and found the thread view. It kind of looks like the bullet point icon in MS Word. Anyways, you don't have to be in debugger mode to use it. Click on the process and click on that button. Any Intent Services will show up while they are running, at least on the emulator. |
||||
|
|
|
I just want to add a note to the answer by @Snicolas. The following steps can be used to check stop service with/without calling
Finally, I would like to mention that the approach mentioned there using a static variable in singleton class is working for me. |
||||
|
|