当我尝试使用Android 4.4(Kit kat)在我的nexus 4上打开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。
答案 0 :(得分:7)
你的代码是什么样的?你可以尝试
runOnUiThread(new Runnable() {
@Override
public void run() {
// TODO Your code
}
});
答案 1 :(得分:6)
只需检查4.4 google的迁移网页视图,并更改了其中的一些内容here
runOnUiThread(new Runnable() {
@Override
public void run() {
// Code for WebView goes here
}
});
// This code is BAD and will block the UI thread
webView.loadUrl("javascript:fn()");
while(result == null) {
Thread.sleep(100);
}
答案 2 :(得分:0)
如果出于某种原因无法使用runOnUiThread,您还可以使用以下代码绕过此错误(例如,您希望访问View而无需显示它):
Handler handler = new Handler(Looper.getMainLooper());
try
{
handler.post(
new Runnable()
{
@Override
public void run()
{
DesiredMethod(); // Where this method runs the code you're needing
}
}
);
} catch (Exception e)
{
e.printStackTrace();
}