Qt Qml - android - 调整listview滚动速度/速度

时间:2016-02-21 13:56:54

标签: android qt listview qml

[Qt Quick 2.0(qml) - Android] 我搜索但是我没有得到如何在列表视图中增加滚动的速度:

ListView {
    width: 180; height: 200

    Component {
        id: contactsDelegate
        Rectangle {
            id: wrapper
            width: 180
            height: yeah.height
            Column{
               id:yeah
               Text {
                   id: contactInfo
                   text: name + ": " + number
               }
               Image{
                   source: jpgsrc
               }
            }
        }
    }

    model: ContactModel {}
    delegate: contactsDelegate
    focus: true
}

问题

说我的ContactModel有200个元素。我的问题是这些元素的滚动速度太慢了。滚动整个列表需要很长时间。

我想知道如何修改该代码以使滚动体验更快(至少以更高的速度)。

由于

0 个答案:

没有答案