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成神之路

版权声明:
作者:Alex
链接:https://www.techfm.club/p/12919.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>