我使用glide 4.6.1加载资源(矢量drawable)。它始终是相同的资源,但有时无法正确加载。看起来Emily Blunt的形象。
代码:
fun AppCompatImageView.loadCircleImage(resId: Int, width: Int, height: Int) {
val options = RequestOptions()
.fitCenter()
.override(width, height)
.circleCrop()
Glide.with(context)
.load(AppCompatResources.getDrawable(context, resId))
.apply(options)
.into(this)
}