DialogFragment 内存泄露的问题

错误提示DialogFragment 内存泄露的问题_第1张图片

创建代码

//创建代码
private void helpDialogShow() {
        integralHelpDialog = new IntegralHelpDialog();
        integralHelpDialog.setData(textHelp);
        if (integralHelpDialog != null && integralHelpDialog.isAdded()) {
            return;
        }
        integralHelpDialog.show(getSupportFragmentManager(), integralHelpDialog.getClass().getName());
    }

主要操作DialogFragment

 

BaseDialogFragment DialogFragment 内存泄露的问题_第2张图片

关闭直接调用Dissmiss() 

这个错误应该怎么解决

 

你可能感兴趣的:(DialogFragment 内存泄露的问题)