Android and Apple are often used to webview in client development, and it is common practice to add WebView to the native page.
When we destroy the page, which webview hold the HTML page will continue to exist, join us in the HTML page to do some monitoring mobile phone shaking, sound ... And the use of JS timed tasks.
Simply destroying our native page does not allow the page to stop executing the content.
So in the small will native page before, will webview page Setup to ask empty page, the following is an Android code, Apple processing method is the same:
@Override public
void Finish () {
//When we finish the activity, the page held by WebView will not be released immediately, if there are other operations in the page that are executing JS, Just doing the finish is not enough.
Mwebview.loadurl ("About:blank");
Super.finish ();
}
This perfect solution to the client WebView hold the page cache, will not immediately release the problem is small series to share all the content, hope to give you a reference, but also hope that we support cloud habitat community.