Has anybody tried to make Android WebView.loadUrl(...) behave synchronously?
My scenario is this: I want to execute some javascript but I don't want to initialize the WebView that executes the javascript until the time at which the javascript is to be executed. For the javascript to execute successfully the call stack needs to have been prepared.
I need to call loadUrl to load the html page that loads the javascript methods. The problem is that loadUrl is called and then returns immediately, tearing down the call stack in the process. Then WebViewClient::onPageFinished(...) gets called later signaling that the WebView is ready and I can execute my script. But now it is too late because my call stack is gone.
I would like loadUrl to wait for onPageFinished but the problem is that onPageFinished gets called in the same thread as loadUrl was called on (even though the loadUrl happens in another thread). So waiting after calling loadURL blocks the thread and onPageFinished never gets called.
Is there some pattern in android/java that permits a thread to wait but have the thread's message loop continue to execute so that a notification to that thread can be received?
WebView? – CommonsWare Jul 5 '12 at 16:50WebView, instead of a JavaScript engine like Rhino? – CommonsWare Jul 5 '12 at 17:32