gpt4 book ai didi

android - Kotlin:未调用 onGlobalLayout

转载 作者:行者123 更新时间:2023-11-29 01:21:35 24 4
gpt4 key购买 nike

我正在使用 Kotlin,并使用 onGlobalLayout 加载 ImageView 。通过 loadUrl。在不使用 afterMeasured 的情况下,我的图像加载得很好,但有时由于高度为 0,它会崩溃。所以我正在考虑使用我在扩展函数 afterMeasured 中定义的 onGlobalLayout,如下所示。然而,不知何故 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 的方式不正确?

最佳答案

首先,您应该比较 widthheight 而不是 measuredWidthmeasuredHeight。后一种尺寸仅在测量/布局过程中使用。

其次,您应该确保 ImageView 在布局中得到正确描述。即它的layout_widthlayout_height不能是wrap_content。此外,其他 View 不得导致此 ImageView 的大小为 0

关于android - Kotlin:未调用 onGlobalLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36526371/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com