I have an android webview and allow the user to use their own javascript inside a window.onload callback (its completely isolated and I personally don't see a security risk). The problem occurs if something like the following is entered
while(true){
}
In the java side of things, I start a timer and after about 5 seconds if JavaScript is still going I try to stop the webview. I have tried various things:
webView.stopLoading();
webView.loadData("", "text/html", null);
webView.freeMemory();
webView.pauseTimers();
webView.destroy();
Class.forName("android.webkit.WebView").getMethod("onPause", (Class[]) null).invoke(webView, (Object[]) null);
each one getting a little more desperate :). Nothing works and a thread continues to use up the processor until I quit the app. Does anyone know how I can stop it correctly?
Any help is much appreciated, Ian