Skip to content

Instantly share code, notes, and snippets.

@a-v-ebrahimi
Created June 8, 2014 21:19
Show Gist options
  • Save a-v-ebrahimi/0fa0f76c33fc3aefb1a2 to your computer and use it in GitHub Desktop.
Save a-v-ebrahimi/0fa0f76c33fc3aefb1a2 to your computer and use it in GitHub Desktop.
Android:Execute AsyncTask Honeycomb
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB)
my_task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void[])null);
else
my_task.execute((Void[])null);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment