I have a Service which starts a thread during onCreate. The thread is monitoring hardware (IOIO) and will end once it is disconnected so essesentially is an infinite loop. Stopping the service from an Activity works fine and the thread also stops (ended in onDestory).

My problem is that if the thread dies (say because of an exception) is it possible to stop the service that spawned it. I've tried using stopSelf() from within the thread code but the service does not stop.

Thank you ps my first post so please excuse any missing conventions I should have followed.

link|improve this question
1  
Welcome to Stackoverflow! If you find a response is helpful, please up vote it. If the response successfully answers your question, please click the green check mark next to it to accept the answer. Also please look at stackoverflow.com/questions/how-to-ask for advice on how to write a good question – Kurtis Nusbaum Nov 8 '11 at 14:46
feedback

1 Answer

up vote 3 down vote accepted

I think what you want here might be to use a Handler. Eseentially, create a handler for your Sevrice (make sure it's final so you can use across all threads). Then in your other thread, call:

myServiceHandler.post(new Runnable(){
  public void run(){
    stopSelf();
  }
}
link|improve this answer
Awesome, so it worked? – Kurtis Nusbaum Nov 10 '11 at 21:44
Thanks just what was needed – user1035795 Nov 10 '11 at 21:45
feedback

Your Answer

 
or
required, but never shown

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