Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What does the following exception mean; how can I fix it?

This is the code:

Toast toast = Toast.makeText(mContext, "Something", Toast.LENGTH_SHORT);

This is the exception:

java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
     at android.os.Handler.<init>(Handler.java:121)
     at android.widget.Toast.<init>(Toast.java:68)
     at android.widget.Toast.makeText(Toast.java:231)
share|improve this question

5 Answers

up vote 57 down vote accepted

You're calling it from a worker thread. You need to call Toast.makeText() (and most other functions dealing with the UI) from within the main thread. You could use a handler, for example.

share|improve this answer
Do you have any basic code of how one could do that? Use a handler from a worker thread? – Eugene van der Merwe Jan 22 '11 at 15:44
7  
Google does: developer.android.com/guide/appendix/faq/commontasks.html . Search for "AlertDialog". – EboMike Jan 23 '11 at 8:04
what about the original problem (it wasn't about AlertDialog)? – aloneguid Jul 5 '11 at 18:29
3  
@aloneguid: The answer clearly addresses the original question. And the example code clearly demonstrates how to fix it (even though it uses an AlertDialog rather than a Toast). What's your problem? Why the downvote? – EboMike Jul 5 '11 at 18:33
40  
The downvote would be because your answer is too ambiguous. Rather than providing a link which contains a lot of unrelated information, it would be much more helpful to provide a direct link to code showing how to use a handler as you propose. Or better yet, include sample code in your answer. – Cleggy Nov 10 '11 at 0:32
show 1 more comment

You need to call Toast.makeText(...) from the UI thread:

activity.runOnUiThread(new Runnable() {
  public void run() {
    Toast.makeText(activity, "Hello", Toast.LENGTH_SHORT).show();
  }
});

This is copy-pasted from another (duplicate) SO answer.

share|improve this answer
1  
Dude you're awesome! – Luke Taylor Jun 16 '12 at 11:30
3  
It helped someone too! – Eamorr Jul 6 '12 at 11:45
Mind blowing and very very Helpful – Mikin Patel Apr 8 at 10:13

I ran into the same problem, and here is how I fixed it:

private final class UIHandler extends Handler
{
    public static final int DISPLAY_UI_TOAST = 0;
    public static final int DISPLAY_UI_DIALOG = 1;

    public UIHandler(Looper looper)
    {
        super(looper);
    }

    @Override
    public void handleMessage(Message msg)
    {
        switch(msg.what)
        {
        case UIHandler.DISPLAY_UI_TOAST:
        {
            Context context = getApplicationContext();
            Toast t = Toast.makeText(context, (String)msg.obj, Toast.LENGTH_LONG);
            t.show();
        }
        case UIHandler.DISPLAY_UI_DIALOG:
            //TBD
        default:
            break;
        }
    }
}

protected void handleUIRequest(String message)
{
    Message msg = uiHandler.obtainMessage(UIHandler.DISPLAY_UI_TOAST);
    msg.obj = message;
    uiHandler.sendMessage(msg);
}

To create the UIHandler, you'll need to perform the following:

    HandlerThread uiThread = new HandlerThread("UIHandler");
    uiThread.start();
    uiHandler = new UIHandler((HandlerThread) uiThread.getLooper());

Hope this helps.

share|improve this answer
Thank you, i looked for this, your solution helped me. =) – Dmitry Frank Jan 4 '12 at 6:06
i tried to use your code but i lost and not sure how to call from onCreate method or from AsyncTask in my situation will you please post the entire code just to learn how things work? – Abu Hamzah Feb 29 '12 at 3:41

The answer by ChicoBird worked for me. The only change I made was in the creation of the UIHandler where I had to do

HandlerThread uiThread = new HandlerThread("UIHandler");

Eclipse refused to accept anything else. Makes sense I suppose.

Also the uiHandler is clearly a class global defined somewhere. I still don't claim to understand how Android is doing this and what is going on but I am glad it works. Now I will proceed to study it and see if I can understand what Android is doing and why one has to go through all these hoops and loops. Thanks for the help ChicoBird.

share|improve this answer

Reason for an error:

Worker threads are meant for doing background tasks and you can't show anything on UI within a worker thread unless you call method like runOnUiThread. If you try to show anything on UI thread without calling runOnUiThread, there will be a java.lang.RuntimeException.

So, if you are in an activity but calling Toast.makeText() from worker thread, do this:

runOnUiThread(new Runnable() 
{
   public void run() 
   {
      Toast toast = Toast.makeText(getApplicationContext(), "Something", Toast.LENGTH_SHORT).show();    
   }
}); 

The above code ensures that you are showing the Toast message in a UI thread since you are calling it inside runOnUiThread method. So no more java.lang.RuntimeException.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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