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
The webViwe destory approach did not work for me - it worked well on the first close of the webview, but subsequent calls to the webview caused a crash.
I ended up doing this:
_webView.loadData("", "text/html", "utf-8");
from my activity finish() method.