问题1:
has leaked window android.widget.PopupWindow that was originally added here
解决:
存在窗口句柄泄露,即未能及时销毁某个Window。
一种是未能关闭弹窗,就调用finish();
一种是页面销毁onDestroy里面,未关闭弹窗。
So, 记得调用dismiss来解除对Dialog等的引用。
解决示例:
image image问题1:
has leaked window android.widget.PopupWindow that was originally added here
解决:
存在窗口句柄泄露,即未能及时销毁某个Window。
一种是未能关闭弹窗,就调用finish();
一种是页面销毁onDestroy里面,未关闭弹窗。
So, 记得调用dismiss来解除对Dialog等的引用。
解决示例:
image image本文标题:Android-Dialog/PopupWindow内存泄漏问题
本文链接:https://www.haomeiwen.com/subject/kcwjsctx.html
网友评论