I know the general problem of "Can't create handler inside thread that has not called Looper.prepare()" has been asked before, but I am struggling to understand how it applies in this case.

I am trying to construct a new CountDownTimer in a non-UI thread, which I guess is the cause of this error, but I don't really understand why the timer would need to be used in the main thread. From what I can see, it looks like it has a callback handler that needs to run in a thread that has a looper, which the non-UI thread does not have by default. It seems my options are: 1) Make this non-UI thread have a Looper or 2) make some strange method on my UI thread that can construct this timer, both which seem goofy to me. Can someone help me understand the implications?

Also, does anyone know of any useful links that shed light on the Looper and MessageQueue? I don't grasp them well, as I am sure I have shown. Thank you!

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

The timer doesn't need to be in a UI thread. But my guess is you're updating the UI to display the countdown count in that thread. Yu can't do that.

Use an asynctask and update the UI in onProgressUpdate

link|improve this answer
I don't believe this is the case. I have commented out all code inside the anonymous class, so all it does it call super in the contructor, but I am still getting the same error. Is it because the CountDownTimer has a callback method for when it is finished, and this needs to be "fired" by the looper? This is the confusion I am hoping to clear up. We can even abstract the problem away from my particular problem - I am just trying to get how it all fits together. Thank you. – skaz Oct 25 '10 at 12:20
Oh, I think I misunderstod your question. Can I ask why you're using a CountdownTimer in a nonUI thread? I think the point of CountdownTimer is to be able to easily update the UI thread. It looks like onTick() and onFinish() are supposed to run on the UI thread. Why not just use a regular java timer? – Falmarri Oct 25 '10 at 17:35
I guess I can use a regular timer. Regardless, why would CountDownTimer bomb in the constructor if I don't do any UI update? – skaz Oct 26 '10 at 21:36
Because every time it calls onTick() it expects to be on the UI thread probably – Falmarri Oct 26 '10 at 21:37
Why would onTick() require the UI Thread? This is what I don't understand. It just doesn't make sense to me why this handler would need to access the UI thread. Do all async methods that require an interrupt work through the UI thread? Thank you for your help. – skaz Oct 29 '10 at 0:50
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

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