修复一处空指针错误

提交图片优化版本:直播间滑动3分钟,内存占用:3G → 1.5G
This commit is contained in:
2022-09-22 16:33:03 +08:00
parent 7f423a9ae2
commit 7033f5e707
3 changed files with 9 additions and 6 deletions

View File

@@ -272,8 +272,9 @@ public class ImgLoader {
@Override
public void onLoadFailed(@Nullable Drawable errorDrawable) {
super.onLoadFailed(errorDrawable);
if (callback != null)
if (callback != null) {
callback.onLoadFailed();
}
}
@Override
@@ -302,7 +303,9 @@ public class ImgLoader {
@Override
public void onLoadCleared(@Nullable Drawable placeholder) {
if (callback != null) {
callback.onLoadFailed();
}
}
});
}

View File

@@ -158,8 +158,8 @@ public class VersionUtil {
} else {
ToastUtil.show(R.string.version_download_url_error);
}
} else if (CommonAppConfig.IS_GOOGLE_PLAY == true) {
if (configBean.getGoogle_isup().equals("0")) {
} else if (CommonAppConfig.IS_GOOGLE_PLAY) {
if (configBean.getGoogle_isup() != null && configBean.getGoogle_isup().equals("0")) {
Log.e("tagg", "111111");
DialogUitl.Builder builder = new DialogUitl.Builder(context);
builder.setTitle(WordUtil.getString(R.string.version_update))