Thread that has not called Looper.prepare() Error
If you seen in Logcat like that "java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()" you probably
You are trying to perform a different activity transaction ui operation. So simply do this;
You are trying to perform a different activity transaction ui operation. So simply do this;
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
runOnUiThread(new Runnable() { | |
public void run() { | |
//Your code is in here | |
} | |
}); |
Yorumlar
Yorum Gönder