美文网首页
Glide圆角

Glide圆角

作者: adustdu2015 | 来源:发表于2018-08-20 17:36 被阅读0次

Glide加载圆角图片:


//设置图片圆角角度
RoundedCorners roundedCorners= new RoundedCorners(6);
//通过RequestOptions扩展功能
RequestOptions options=RequestOptions.bitmapTransform(roundedCorners).override(300, 300);
 
Glide.with(context).load(files.getFilePath()).apply(options).into(mUserPhoto);

相关文章

网友评论

      本文标题:Glide圆角

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