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!!)

你可能感兴趣的:(Glide加载圆角和圆形图片)