I have an app that I\'ve put together to stream flash video in a webview when a user clicks a button.
It does this fine, but after backing out or losing focus, it lo
I combined some of the answers here, and this worked for me:
@Override protected void onDestroy() { super.onDestroy(); webView.stopLoading(); webView.loadData("", "text/html", "utf-8"); webView.destroy(); }