GitHub地址。
compile 'com.github.bumptech.glide:glide:3.7.0' compile 'com.android.support:support-v4:19.1.0'
<strong>注意:</strong> 在使用Glide时需要添加support-v4包
加载图片:
Glide.with(mContext)
.load(url)
.placeholder(R.drawable.loaging)
.crossFade() //动画
.into(mImageView);