Activity has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView@46029dd0 that was originally added here

你。 提交于 2019-11-30 09:17:11

This error will happen if your activity has been destroyed but you dialog is still showing. So You have added these code in your activity's onDestroy()

@Override
public void onDestroy() {
    super.onDestroy();
    if (dialog != null) {
        dialog.dismiss();
        dialog = null;
    }
}

Possibly Its Because of you are writing

textValidation.setText(e.toString());

inside the function,

doInBackground()

which is updating UI which is allowed by android in doInBackground() method. So somehow if you put this line in

postExecute()

then this problem will get resolved.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!