> What is this exception ? The second link in a Google search for RejectedExecutionException turns up:
http://pveentjer.wordpress.com/2008/02/06/are-you-dealing-with-the-rejectedexecutionexception/ Your problem is probably the second on that list -- you have tried to start too many AsyncTasks. AsyncTask uses a limited-length BlockingQueue for jobs waiting for a thread in the thread pool to free up, and it will throw that exception when you exceed the available number of slots in the queue. -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer Books: http://commonsware.com/books.html -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en To unsubscribe, reply using "remove me" as the subject.

