直接说问题
我们在加载的时候 就是还没加载完成的是 显示占位符 我们一般会加一个placeholder (loadingImage)如下
Glide.with(mContext).load(path).placeholder(loadingImage).error(errorImageView).into(mImageView);
但是你会发现 他会一直显示占位符的图片 不会显示path 你的路径
这个原因 应该是缓存问题
只要加上dontAnimate() 或者 吧Placeholder (loadingImage)的loadingimage 换成mImageview.getdrawable如下
Glide.with(mContext).load(path).placeholder(loadingImage).dontAnimate().error(errorImageView).into(mImageView);
即可