使用Glide加载圆角图片

//设置图片圆角角度
RoundedCorners roundedCorners= new RoundedCorners(6);
//通过RequestOptions扩展功能,override采样率,因为ImageView就这么大,可以压缩图片,降低内存消耗
RequestOptions options=RequestOptions.bitmapTransform(roundedCorners).override(300, 300);
 
Glide.with(context).load(files.getFilePath()).apply(options).into(mUserHead);

  

猜你喜欢

转载自www.cnblogs.com/yjpjy/p/10918425.html