我正在使用Kotlin,并使用onGlobalLayout加载图像视图。通过loadUrl。没有使用afterMeasured,我的图像加载得很好,但有时由于高度为0,它会崩溃。所以我正在考虑使用onGlobalLayout,我在扩展函数中定义了afterMeasured,如下所示。然而不知怎的,onGlobalLayout根本就没有被调用过。我的代码有什么问题?
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_ministry)
actionBar?.setDisplayHomeAsUpEnabled(true)
model = intent.getSerializableExtra(Constants.ACTIVITY_NAVIGATE_MINISTRY) as Model.Ministries
actMinistryImage.loadUrl(model.photo)
}
fun ImageView.loadUrl(url: String?, placeholder: Int = R.drawable.ministries_blank) {
this.afterMeasured {
val transformation = FixRatioTransformation(this, true)
Picasso.with(context).load(url).error(placeholder).transform(transformation)
.placeholder(placeholder).into(this)
}
}
inline fun <T: View> T.afterMeasured(crossinline f: T.() -> Unit) {
viewTreeObserver.addOnGlobalLayoutListener(object : ViewTreeObserver.OnGlobalLayoutListener {
override fun onGlobalLayout() {
if (measuredWidth > 0 && measuredHeight > 0) {
viewTreeObserver.removeOnGlobalLayoutListener(this)
f()
}
}
})
}
也许这不是Kotlin特有的,但更多的是调用onGlobalLayout并没有正确地在我身边完成?
答案 0 :(得分:1)
首先,您应该比较width
和height
而不是measuredWidth
和measuredHeight
。后一种尺寸仅在测量/布局过程中使用。
其次,您应确保在布局中正确描述ImageView
。这是layout_width
而layout_height
不能是wrap_content
。此外,其他观点不得导致此ImageView
具有0
大小。