I've got WebView, JS code inside it. Also I have interface to allow Java method invocation from WebView to Java code. I need to pass data from JS to Java. To do so:
webView.loadUrl("javascript:getData()");
//Obtain Java object here
In JavaScript:
function gataData () {
    //serialize data to JSON, pass it as 'native' function param
    JSInterface.setLocationsData(data);// This calls a Java function setLocationsData(String param)
}
In JavaScript interface(Java code):
 void setLocationsData(String param){
    //parse JSON here, create Java Object
 }
The problem is: I've got a delay between calling script in WebView after webView.loadUrl() and moment when data is returned to my Java code. Java code doesn't wait for JS to finish it's business. How do I solve this?
 
    