i tried to show the toast from thread.

Toast.makeText(activity.getApplicationContext(), "This is the Toast message", Toast.LENGTH_LONG).show();

but throws the exception

java.lang.RuntimeException:Can't create a handler inside thread that has not called Looper.prepare().

how do i solve this problem. i have put the Looper.myLooper().prepare(); before the Toast.makeText(....).show(); when i have done this it doesnt throw the exception. but doesnot show any toast message. so how do i solve this problem. thanks in advance.

link|improve this question

22% accept rate
feedback

2 Answers

Check this question : How to raise a toast in AsyncTask, I am prompted to used the Looper

link|improve this answer
feedback

You can create your Toast message in onPostExecute of Async Task.. Try this..

protected void onPostExecute(Void result) {
  Toast.makeText(ActivityName.this,"Your Text", Toast.LENGTH_SHORT).show(); 
  if (this.dialog.isShowing()) {
    this.dialog.dismiss();
  }
}
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.