Android Webview Memory Leak When Using Assets
I've recently noticed that when I load a webview based off code from a file (using assets or a local directory), the WebView will leak the memory once the destroy() method is calle
Solution 1:
.destroy() --> Destroys the internal state of this WebView. This method should be called after this WebView has been removed from the view system.
Post a Comment for "Android Webview Memory Leak When Using Assets"