I am trying to call some javascript functions sitting in an html page running inside an android webview. Pretty simple what the code
javascript
html
android webview
public void run(final String scriptSrc) { webView.post(new Runnable() { @Override public void run() { webView.loadUrl("javascript:" + scriptSrc); } }); }