How to raise a toast in AsyncTask, I am prompted to used the Looper

onPostExecute – executes on UI thread
or
publishProgress(); in your doinbackground and

protected void onProgressUpdate(Integer... progress) {
}

http://developer.android.com/reference/android/os/AsyncTask.html

Leave a Comment