Activity has leaked window that was originally added

来源:互联网 发布:iphone打不开蜂窝数据 编辑:程序博客网 时间:2024/05/02 13:53
this error will not crash application . the way to solve issue :I meet this issue when activity destroy but dialog still show :so you can resolve it as below:
@Override  protected void onDestroy() {      if(mDialog != null) {          mDialog.dismiss();      }      super.onDestroy();  }  
0 0
原创粉丝点击