Android Web-view Error I/chromium: [INFO:CONSOLE(1)] "Uncaught ReferenceError:

前端 未结 2 1510
北荒
北荒 2021-02-14 13:36

I have a web-service In that I have added bar-code reader for android

So with the Help of JavaScript I am calling my bar-code reader from web-view

So for that I

2条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-14 14:12

    • You should execute the javascript when the page is loaded

      mWebView.setWebViewClient(new WebViewClient() { @Override public void onPageFinished(WebView view, String url) { webview.loadUrl("javascript:myFunction()"); } });

    • The code will be executed and will find your javascript function. The way you are doing now does not wait.

提交回复
热议问题