Glide

作者: 小慧sir | 来源:发表于2019-07-13 14:52 被阅读0次

Glide 常规使用

//将图片设置成圆形
     RequestOptions requestOptions = RequestOptions.circleCropTransform();//设置图片形状
Glide.with(context)
          .load(results
          .get(position)
          .getUrl())
          .apply(requestOptions)
          .into(holder.image);

相关文章

网友评论

      本文标题:Glide

      本文链接:https://www.haomeiwen.com/subject/tmxmkctx.html