您是否考虑过一种更模型化的方法?我的意思是,如果您使用类似 a 的东西,ListView
您可以简单地更改currentItem
如果视图超出可见范围,视图将自动滚动到该点。
此外,它只会加载可见范围内的文本元素,从而节省一些内存。
但即使使用您当前的方法,确保可见性也不会那么复杂。
Flickable {
id: flick
anchors.fill: parent
contentHeight: col.height
function ensureVisible(item) {
var ypos = item.mapToItem(contentItem, 0, 0).y
var ext = item.height + ypos
if ( ypos < contentY // begins before
|| ypos > contentY + height // begins after
|| ext < contentY // ends before
|| ext > contentY + height) { // ends after
// don't exceed bounds
contentY = Math.max(0, Math.min(ypos - height + item.height, contentHeight - height))
}
}
Column {
id: col
Repeater {
id: rep
model: 20
delegate: Text {
id: del
text: "this is item " + index
Keys.onPressed: rep.itemAt((index + 1) % rep.count).focus = true
focus: index === 0
color: focus ? "red" : "black"
font.pointSize: 40
onFocusChanged: if (focus) flick.ensureVisible(del)
}
}
}
}
该解决方案快速而简单,但将其投入生产将是微不足道的。重要的是映射到contentItem
而不是轻弹,因为后者会给出错误的结果,考虑到当前的滚动量。使用映射将使解决方案与您可能使用的任何定位方案无关,并且还将支持任意级别的嵌套对象。