Glide占位图错误图圆角处理

2020-07-22  本文已影响0人  远在远方的风yzyfdf

1、直接让UI切圆角图,当然,要是有也不用看了。。。
2、thumbnail先处理图片,再apply中设置

    private fun setCover(iv: ImageView, id: Int, url: String) {
        Glide.with(mContext)
            .load(url)
            .apply(
                RequestOptions().placeholder(id).error(id)
                    .transform(MultiTransformation(CenterCrop(), RoundedCorners(radius)))
            )
            .thumbnail(
                Glide.with(mContext)
                    .load(id)
                    .apply(
                        RequestOptions().transform(
                            MultiTransformation(CenterCrop(), RoundedCorners(radius))
                        )
                    )
            )
            .into(iv)
    }
上一篇下一篇

猜你喜欢

热点阅读