WebView的那些坑
作者:Qyouu链接:http://www.imooc.com/article/70364来源:慕课网
1) 为什么Webview打开一个页面,播放一段音乐,退出Activity时音乐还在后台播放?
解决方案 1:
//销毁Webview@Overrideprotected void onDestroy() { if (mWebview != null) {
mWebview.loadDataWithBaseURL(null, "", "text/html", "utf-8", null);
mWebview.clearHistory();
((ViewGroup) mWebview.getParent()).removeView(mWebview);
mWebview.destroy();
mWebview = null;
} super.onDestroy();
}
解决方案 2:
@Overrideprotected void
WebView的那些坑最先出现在Python成神之路。
共有 0 条评论