Glide由浅入深

1.Glide给控件加载图片:

// Picasso.with(MainActivity.this).load(more.get(position).getUrl())
// .into(holder.IM);
Glide.with(MainActivity.this).load(more.get(position).getUrl())
.into(holder.IM);




为什么 有的图片第一次加载的时候只显示占位图,第二次才显示正常的图片呢?

为什么 我总会得到类似You cannot start a load for a destroyed activity这样的异常呢?

为什么 我不能给加载的图片setTag()呢?

为什么?为什么?这么NB的库竟然会有这么多的问题。没错,这就是我今天要讲的重点。怎么避免上面的问题发生。


Glide.with(this)
    .load(R.drawable.thumbnail)
    .bitmapTransform(new CropCircleTransformation(this))
    .into(mProfile);

XML


all_circle_white_bg.xml



  
    
      
  
  

  • I use this transformation library. -> https://github.com/wasabeef/glide-transformations
  • Circle stroke width is ImageView's padding

你可能感兴趣的:(Glide由浅入深)