Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

1 Answer

Have you tried disabling JavaScript before destroying the WebView? It seems like the JavaScript interpreter is outliving your WebView, but perhaps if you tell it to stop executing, then you will solve your problem. I'd try using this at the top of your timed method:

webView.getSettings().setJavaScriptEnabled(false);
share|improve this answer
Thanks for the suggestion but unfortunately it doesn't work. – Ian Mar 11 '12 at 18:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.