Glide加载圆角和圆形图片

一、加载圆形图片

//imageview样式为android:scaleType="fitXY"
Glide.with(mContext).load(item?.BusinessLogoPath).apply(RequestOptions.bitmapTransform(CircleCrop())).into(iv_business_head!!)

二、加载圆角图片

//imageview样式为android:scaleType="fitXY"
//四个角圆角
Glide.with(mContext).load(item?.LiveConverPic).apply(RequestOptions.bitmapTransform(RoundedCorners(40))).placeholder(R.drawable.hotel_img_loading_min).into(iv_desktop_live!!)
//设置那些角圆角圆角
//RoundedCornersTransformation("圆角弧度","外边距","圆角的方位")
Glide.with(getActivity()).load(liveSetting.getLivelitimgPath()).apply(RequestOptions.bitmapTransform(new RoundedCornersTransformation(ScreenUtils.dip2px(getActivity(),20f),0,RoundedCornersTransformation.CornerType.LEFT))).into(iv_small_live);

三、加载原价图片

//imageview样式为android:scaleType="centerCrop"
Glide.with(mContext).load(item?.coverUrl).placeholder(R.drawable.no_hotel_img).apply(
                RequestOptions()
                    .transform(RoundedCorners(30))
                    .transform(CenterCrop(), RoundedCorners(30))
            ).into(iv_video_first!!)
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容