现在尝试在我的 nexus 4 上使用 Android 4.4 (Kit kat) 打开 webview 时,我会收到此错误消息:
Calling View methods on another thread than the UI thread.;
java.lang.IllegalStateException: Calling View methods on another thread than the UI thread.
com.android.webview.chromium.WebViewChromium.createThreadException(WebViewChromium.java:268)
自从我更新到 Android 4.4 我的 Nexus 4。
最佳答案
你的代码是什么样的?你可以试试
runOnUiThread(new Runnable() {
@Override
public void run() {
// TODO Your code
}
});
关于android - java.lang.IllegalStateException : Calling View methods on another thread than the UI thread 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20255920/