7

现在尝试使用 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。

4

3 回答 3

8

你的代码是什么样的?你可以试试

 runOnUiThread(new Runnable() {
        @Override
        public void run() {

            // TODO Your code
        }
    });
于 2013-11-28T01:05:28.897 回答
6

只需检查 4.4 google 的迁移 web 视图添加并更改了其中的一些内容

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);
}
于 2013-11-28T01:05:03.993 回答
0

如果 runOnUiThread 由于某种原因不可用,您还可以使用以下代码绕过此错误(假设您想要访问视图而不需要显示它):

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();
}
于 2019-04-17T14:01:49.457 回答