这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » 嵌入式开发 » STM32 » 解决:Android出现All WebView methods must be

共2条 1/1 1 跳转至

解决:Android出现All WebView methods must be called on the same thread.

高工
2018-11-05 08:30:39     打赏


new Thread(){
            public void run() {
                //System.out.println("init-66666666662----");
                view.loadUrl(url);
            }

        }.start();

在新的线程中操作 WebView会报错

04-26 14:52:22.645: E/AndroidRuntime(7635): java.lang.RuntimeException: java.lang.Throwable: A WebView method was called on thread 'Thread-666'. All WebView methods must be called on the same thread. (Expected Looper Looper (main, tid 1) {35b6f8e5} called on null, FYI main Looper is Looper (main, tid 1) {35b6f8e5})

是因为 新版的Android的SDK要求在创建WebView所在的线程中操作它,在其它线程中操作它都会报这样的错误。

解决方法

WebViewActivity.this.runOnUiThread(new Runnable() {//其中 WebViewActivity 是webview所在的Activity     
            public void run() {
                System.out.println("init-66666666662----");
                webview.loadUrl(url);
            }
        });




管理员
2018-11-05 09:13:20     打赏
2楼

谢谢楼主分享


共2条 1/1 1 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]