首页 > 代码库 > WebView.destroy() called while still attached 的解决办法

WebView.destroy() called while still attached 的解决办法

可以现在webView的父组件中删除该webview,然后再Destroy

parent.removeView(webView);

然后

webView.removeAllViews();

webView.destroy();