[android-developers] AsyncTask : java.util.concurrent.RejectedExecutionException

2010-04-07 Thread arnouf
Hello, I'm trying to launch a lot of remote connection retrieve picture on a server. To do this, I use AsyncTask. This pics are displayed in a listview using adapter. If I implement this in my adapter, images are retrieved but the display is bad (problem with index or something like that). If I

Re: [android-developers] AsyncTask : java.util.concurrent.RejectedExecutionException

2010-04-07 Thread Mark Murphy
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.