【发布时间】:2013-12-13 21:20:00
【问题描述】:
现在尝试使用 Android 4.4 (Kit kat) 在我的 nexus 4 上打开 web 视图时,我会收到以下错误消息:
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。
【问题讨论】:
-
你能澄清一下吗?您究竟是如何打开网络视图的? “自从我更新到 Android 4.4”是什么意思?你有什么代码要显示吗?
-
这个异常意味着你应该在 UI 线程中运行你的代码。你可以使用 handler 或 runOnUiThread 来解决这个问题
标签: android multithreading illegalstateexception android-4.4-kitkat webviewchromium