[android-developers] Re: Getting a strange MessageQueue warning w/ DefaultHttpClient in AsyncTask

2010-12-25 Thread Bret Foreman
I found the problem easily after a good night's rest. I was running the AsyncTask inside an IntentService. So the Service exits, thinking it is finished and the AsyncTask's handler goes away. Easy to fix. -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Getting a strange MessageQueue warning w/ DefaultHttpClient in AsyncTask

2010-12-24 Thread Doug
I can't imagine that Apache HttpClient would be doing anything with Android handlers unless Google modified it to do so, unless maybe you are using AndroidHttpClient. Are you perhaps making any AsyncTask method calls inside some kind of asynchronous callback from HttpClient? Care to share any