I have tasks completed by AsyncTask in background. At some point I need to issue a Toast that something is completed.

I've tried and I failed because Caused by: java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()

How can I do that?

link|improve this question

feedback

4 Answers

up vote 10 down vote accepted

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

link|improve this answer
I have to issue the Toast in the middle of the process, not in the end. What are my options? – Pentium10 May 14 '10 at 22:03
onProgressUpdate. It also runs on UI thread and Toast should be fine – Alex Volovoy May 15 '10 at 21:13
feedback

You can also use runOnUiThread method to manipulate your UI from background threads.

link|improve this answer
Why the down vote? I think he has to call runOnUiThread. – Brandon O'Rourke May 14 '10 at 22:48
feedback

If you want to display the Toast from the background thread you'll have to call runOnUiThread from doInBackground. I don't believe there's another way.

Edit: I take that back. I think you can implement onProgressUpdate, which runs on the UI thread, to show the Toast and make calls to publishProgress from doInBackground.

link|improve this answer
feedback

If you want to use Toast You should use this method : onProgressUpdate()

protected Integer doInBackground(Void...Params) {
   int check_point = 1;
   publishProgress(check_point);
   return check_point;
}

protected void onProgressUpdate(Integer integers) {
  if(integers == 1) {
    Toast.makeText(classname.this, "Text", 0).show(); 
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.