I am having a problem with Android looper. I have a class that has extended AsynTask. Inside doInBackground() method i have Looper.prepare() and some code below.

It runs well and good for the first time but after that it gives an exception " Only one Looper may be created per thread" .

There seems some solution to use Looper.quit() but i am unable to implement it.

Any help will be appreciated.

link|improve this question

70% accept rate
It does seem to me that Looper.quit() is what you needed here. In android API documentation, it is clearly stated that "Be sure to call loop() after calling this method, and end it by calling quit()". – Sun Jian Oct 8 '10 at 7:39
What do you mean by "am unable to implement it."? – methode Oct 8 '10 at 7:49
I mean that i am not able to find quit() inside Looper. It shows getMainLooper, myLooper(), loop(), myQueue(), prepare(), prepareMainLooper() but not quit(). – viv Oct 8 '10 at 7:58
feedback

2 Answers

Try...

Looper.getMainLooper().quit();
link|improve this answer
feedback
class LooperThread extends Thread {
      public Handler mHandler;

      public void run() {
          Looper.prepare();

          mHandler = new Handler() {
              public void handleMessage(Message msg) {
                  // process incoming messages here
              }
          };

          Looper.loop();
      }
  }
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.