修复一处空指针错误

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

View File

@ -272,9 +272,10 @@ public class ImgLoader {
@Override
public void onLoadFailed(@Nullable Drawable errorDrawable) {
super.onLoadFailed(errorDrawable);
if (callback != null)
if (callback != null) {
callback.onLoadFailed();
}
}
@Override
public void onLoadCleared(@Nullable Drawable placeholder) {
@ -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))

View File

@ -10,9 +10,9 @@ ext {
manifestPlaceholders = [
//
// serverHost : "https://napi.yaoulive.com",
serverHost : "https://napi.yaoulive.com",
//
serverHost : "https://ceshi.yaoulive.com",
// serverHost : "https://ceshi.yaoulive.com",
//
txMapAppKey : "EOZBZ-ASLCU-4XPV3-BDCHZ-4E3Q7-H4BWB",