安卓html js,Android调用HTML中JavaScript方法报错

Android中Java调用JavaScript方法报错:

Android中Java代码:

webView.loadUrl("javascript:show('" + json + "')")//

上边这行代码看着没有,但是有些时候回报如下错误:

W/WebView: java.lang.Throwable: A WebView method was called on thread 'JavaBridge'. All WebView methods must be called on the same thread. (Expected Looper Looper (main, tid 1) {24c92049} called on Looper (JavaBridge, tid 5570) {2fd70380}, FYI main Looper is Looper (main, tid 1) {24c92049})

at android.webkit.WebView.checkThread(WebView.java:2309)

at android.webkit.WebView.loadUrl(WebView.java:884)

at cn.qjnu.androidandh5.JsCallJavaCallPhoneActivity$JSCallJavaCallPhoneTest.showcontacts(JsCallJavaCallPhoneActivity.java:55)

at com.android.org.chromium.base.SystemMessageHandler.nativeDoRunLoopOnce(Native Method)

at com.android.org.chromium.base.SystemMessageHandler.handleMessage(SystemMessageHandler.java:28)

at android.os.Handler.dispatchMessage(Handler.java:111)

at android.os.Looper.loop(Looper.java:179)

at android.os.HandlerThread.run(HandlerThread.java:61)

W/System.err: java.lang.RuntimeException: java.lang.Throwable: A WebView method was called on thread 'JavaBridge'. All WebView methods must be called on the same thread. (Expected Looper Looper (main, tid 1) {24c92049} called on Looper (JavaBridge, tid 5570) {2fd70380}, FYI main Looper is Looper (main, tid 1) {24c92049})

W/System.err: at android.webkit.WebView.checkThread(WebView.java:2319)

W/System.err: at android.webkit.WebView.loadUrl(WebView.java:884)

W/System.err: at cn.qjnu.androidandh5.JsCallJavaCallPhoneActivity$JSCallJavaCallPhoneTest.showcontacts(JsCallJavaCallPhoneActivity.java:55)

W/System.err: at com.android.org.chromium.base.SystemMessageHandler.nativeDoRunLoopOnce(Native Method)

W/System.err: at com.android.org.chromium.base.SystemMessageHandler.handleMessage(SystemMessageHandler.java:28)

W/System.err: at android.os.Handler.dispatchMessage(Handler.java:111)

W/System.err: at android.os.Looper.loop(Looper.java:179)

W/System.err: at android.os.HandlerThread.run(HandlerThread.java:61)

W/System.err: Caused by: java.lang.Throwable: A WebView method was called on thread 'JavaBridge'. All WebView methods must be called on the same thread. (Expected Looper Looper (main, tid 1) {24c92049} called on Looper (JavaBridge, tid 5570) {2fd70380}, FYI main Looper is Looper (main, tid 1) {24c92049})

W/System.err: at android.webkit.WebView.checkThread(WebView.java:2309)

W/System.err: ... 7 more

解决办法,把webView.loadUrl(String url)放在webView.post(Runnable action)中执行即可解决:

webView.post( new Runnable(){

@Override

public void run(0){

webView.ladUrl(String url);

}

});

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值