Glide最最基础使用方法

GitHub地址。

compile 'com.github.bumptech.glide:glide:3.7.0' compile 'com.android.support:support-v4:19.1.0'
注意: 在使用Glide时需要添加support-v4包

加载图片:

Glide.with(mContext)
        .load(url)
        .placeholder(R.drawable.loaging)
        .crossFade()  //动画
        .into(mImageView);

扩展阅读

MrFu——Glide系列。

你可能感兴趣的:(Glide最最基础使用方法)