产生原因:Glide为一个不存在的Activity加载图片产生的
解决方法:1,加载图片时进行是否是主线程判断
2,退出活动时停止加载图片
判断是否是主线程的代码:
public static boolean isMainThread(){ if (Looper.myLooper() != Looper.getMainLooper()){ return false; }else { return true; } }
在加载图片时加入的判断
if (OtherUtils.isMainThread()){ Glide.with(this).load(SPUtils.getLocalStringValue(SPKeys.HEADIMAGE)).into(headerView); }
在活动退出时停止加载
@Override protected void onDestroy() { super.onDestroy(); if (!OtherUtils.isMainThread()){ Glide.get(this).clearMemory(); } }