Thursday 27 October 2016

android - Can't create handler inside thread that has not called Looper.prepare()



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.(Handler.java:121)
at android.widget.Toast.(Toast.java:68)
at android.widget.Toast.makeText(Toast.java:231)

Answer



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.



Look up Communicating with the UI Thread in the documentation. In a nutshell:




// Set this up in the UI thread.

mHandler = new Handler(Looper.getMainLooper()) {
@Override
public void handleMessage(Message message) {
// This is where you do your work in the UI thread.
// Your worker tells you in the message what to do.
}
};


void workerThread() {
// And this is how you call it from the worker thread:
Message message = mHandler.obtainMessage(command, parameter);
message.sendToTarget();
}


Other options:




You could use an AsyncTask, that works well for most things running in the background. It has hooks that you can call to indicate the progress, and when it's done.



You could also use Activity.runOnUiThread().


No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...