Is it possible to give a name to an AsyncTask\'s background thread, as for normal Threads in Java:
Thread(Runnable target, String name)
I
Try calling this from inside doInBackground():
doInBackground()
Thread.currentThread().setName("some custom name");