使用滑行问题多次加载矢量可绘制资源

时间:2018-03-26 14:34:49

标签: android kotlin android-glide

我使用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)
}

error glide

0 个答案:

没有答案