I have been receiving a large number of bug reports from users reported from force close dialogs that state something like the following:

java.lang.ExceptionInInitializerError
at com.MyRequest.execute(MyRequest.java:59)
at org.nsdev.MySyncAdapter.onPerformSync(MySyncAdapter.java:90)
at android.content.AbstractThreadedSyncAdapter$SyncThread.run(AbstractThreadedSyncAdapter.java:164)
Caused by: java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
at android.os.Handler.<init>(Handler.java:121)
at android.os.AsyncTask$InternalHandler.<init>(AsyncTask.java:421)
at android.os.AsyncTask$InternalHandler.<init>(AsyncTask.java:421)
at android.os.AsyncTask.<clinit>(AsyncTask.java:152)

Now, I've been trying to figure out how I should best resolve this issue. Inside my onPerformSync implementation I am creating a number of AsyncTasks and executing them. I suspect my problem is that I'm not waiting for these tasks to complete before returning from onPerformSync. I tried to do the following:

Looper.prepare();

// Execute async tasks

Looper.loop();

And then I set up a counter and when that counter decrements to zero, call Looper.myLooper().quit() inside the callback from the async tasks.

But doing this causes my application to crash even harder with the following runtime error:

12-21 23:41:19.352: E/AndroidRuntime(729): FATAL EXCEPTION: main
12-21 23:41:19.352: E/AndroidRuntime(729): java.lang.RuntimeException: Main thread not allowed to quit
12-21 23:41:19.352: E/AndroidRuntime(729):  at android.os.MessageQueue.enqueueMessage(MessageQueue.java:175)
12-21 23:41:19.352: E/AndroidRuntime(729):  at android.os.Looper.quit(Looper.java:173)
12-21 23:41:19.352: E/AndroidRuntime(729):  at org.nsdev.MySyncAdapter$1.requestFinished(MySyncAdapter.java:89)
12-21 23:41:19.352: E/AndroidRuntime(729):  at com.MyAsyncTask.onPostExecute(MyAsyncTask.java:84)
12-21 23:41:19.352: E/AndroidRuntime(729):  at android.os.AsyncTask.finish(AsyncTask.java:417)
12-21 23:41:19.352: E/AndroidRuntime(729):  at android.os.AsyncTask.access$300(AsyncTask.java:127)
12-21 23:41:19.352: E/AndroidRuntime(729):  at android.os.AsyncTask$InternalHandler.handleMessage(AsyncTask.java:429)
12-21 23:41:19.352: E/AndroidRuntime(729):  at android.os.Handler.dispatchMessage(Handler.java:99)
12-21 23:41:19.352: E/AndroidRuntime(729):  at android.os.Looper.loop(Looper.java:123)
12-21 23:41:19.352: E/AndroidRuntime(729):  at android.app.ActivityThread.main(ActivityThread.java:4627)
12-21 23:41:19.352: E/AndroidRuntime(729):  at java.lang.reflect.Method.invokeNative(Native Method)
12-21 23:41:19.352: E/AndroidRuntime(729):  at java.lang.reflect.Method.invoke(Method.java:521)
12-21 23:41:19.352: E/AndroidRuntime(729):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
12-21 23:41:19.352: E/AndroidRuntime(729):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
12-21 23:41:19.352: E/AndroidRuntime(729):  at dalvik.system.NativeStart.main(Native Method)

Any idea how to correctly accomplish my sync?

link|improve this question

75% accept rate
feedback

2 Answers

please check out the below link :

How to make a transition between activitys ?

here explain how to use ASync Task with example.

link|improve this answer
Thanks, but I already know how to do the async tasks. The problem is that this is a syncadapter and there's some sort of edge case where I might need set up a looper. I'd like to know how to do that properly. – Thorinside Jan 17 at 16:29
feedback

Actually you can't. AsyncTask uses main UI thread and relies on Handler and Looper which is not available there. Use pure Thread implementation, AsyncTask should be used only in the activities.

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.