Repeater适用于少量的静态数据集。但是在实际应用中,数据模型往往是非常复杂的,并且数量巨大。这种情况下,Repeater并不十分适合。于是,QtQuick 提供了两个专门的视图元素:ListViewGridView。这两个元素都继承自Flickable,因此允许用户在一个很大的数据集中进行移动。同时,ListViewGridView能够复用创建的代理,这意味着,ListViewGridView不需要为每一个数据创建一个单独的代理。这种技术减少了大量代理的创建造成的内存问题。

    由于ListViewGridView在使用上非常相似,因此我们以ListView为例进行介绍。

    ListView类似前面章节提到的Repeater元素。ListView使用模型提供数据,创建代理渲染数据。下面是ListView的简单使用:

    1. import QtQuick 2.2
    2.  
    3. Rectangle {
    4. width: 80
    5. height: 300
    6. color: "white"
    7. ListView {
    8. anchors.fill: parent
    9. anchors.margins: 20
    10. clip: true
    11. model: 100
    12. delegate: numberDelegate
    13. spacing: 5
    14. }
    15.  
    16. Component {
    17. id: numberDelegate
    18. Rectangle {
    19. width: 40
    20. height: 40
    21. color: "lightGreen"
    22. Text {
    23. anchors.centerIn: parent
    24. font.pixelSize: 10
    25. text: index
    26. }
    27. }
    28. }
    29. }

    代码运行结果如下图所示:

    ListView 示例

    如果数据模型包含的数据不能在一屏显示完全,ListView只会显示整个列表的一部分。但是,作为 QtQuick 的一种默认行为,ListView并不能限制显示范围就在代理显示的区域内。这意味着,代理可能会在ListView的外部显示出来。为避免这一点,我们需要设置clip属性为true,使得超出ListView边界的代理能够被裁减掉。注意下图所示的行为(左面是设置了clipListView而右图则没有):

    ListView 裁剪

    对于用户而言,ListView是一个可滚动的区域。ListView支持平滑滚动,这意味着它能够快速流畅地进行滚动。默认情况下,这种滚动具有在向下到达底部时会有一个反弹的特效。这一行为由boundsBehavior属性控制。boundsBehavior属性有三个可选值:Flickable.StopAtBounds完全消除反弹效果;Flickable.DragOverBounds在自由滑动时没有反弹效果,但是允许用户拖动越界;Flickable.DragAndOvershootBounds则是默认值,意味着不仅用户可以拖动越界,还可以通过自由滑动越界。

    当列表滑动结束时,列表可能停在任意位置:一个代理可能只显示一部分,另外部分被裁减掉。这一行为是由snapMode属性控制的。snapMode属性的默认值是ListView.NoSnap,也就是可以停在任意位置;ListView.SnapToItem会在某一代理的顶部停止滑动;ListView.SnapOneItem则规定每次滑动时不得超过一个代理,也就是每次只滑动一个代理,这种行为在分页滚动时尤其有效。

    默认情况下,列表视图是纵向的。通过orientation属性可以将其改为横向。属性可接受值为ListView.VerticalListView.Horizontal。例如下面的代码:

    1. import QtQuick 2.2
    2.  
    3. Rectangle {
    4. width: 480
    5. height: 80
    6. color: "white"
    7.  
    8. ListView {
    9. anchors.fill: parent
    10. anchors.margins: 20
    11. clip: true
    12. model: 100
    13. orientation: ListView.Horizontal
    14. delegate: numberDelegate
    15. spacing: 5
    16. }
    17.  
    18. Component {
    19. id: numberDelegate
    20.  
    21. Rectangle {
    22. width: 40
    23. height: 40
    24. color: "lightGreen"
    25. Text {
    26. anchors.centerIn: parent
    27. font.pixelSize: 10
    28. text: index
    29. }
    30. }
    31. }
    32. }

    当列表视图横向排列时,其中的元素按照从左向右的顺序布局。使用layoutDirection属性可以修改这一设置。该属性的可选值为Qt.LeftToRightQt.RightToLeft

    在触摸屏环境下使用ListView,默认的设置已经足够。但是,如果在带有键盘的环境下,使用方向键一般应该突出显示当前项。这一特性在 QML 中称为“高亮”。与普通的代理类似,视图也支持使用一个专门用于高亮的代理。这可以认为是一个额外的代理,只会被实例化一次,并且只会移动到当前项目的位置。

    下面的例子设置了两个属性。第一,focus属性应当被设置为true,这允许ListView接收键盘焦点。第二,highlight属性被设置为一个被使用的高亮代理。这个高亮代理可以使用当前项目的xyheight属性;另外,如果没有指定width属性,也可以使用当前项目的width属性。在这个例子中,宽度是由ListView.view.width附加属性提供的。我们会在后面的内容详细介绍这个附加属性。

    1. import QtQuick 2.2
    2.  
    3. Rectangle {
    4. width: 240
    5. height: 300
    6. color: "white"
    7.  
    8. ListView {
    9. anchors.fill: parent
    10. anchors.margins: 20
    11. clip: true
    12. model: 100
    13. delegate: numberDelegate
    14. spacing: 5
    15. highlight: highlightComponent
    16. focus: true
    17. }
    18.  
    19. Component {
    20. id: highlightComponent
    21. Rectangle {
    22. width: ListView.view.width
    23. color: "lightGreen"
    24. }
    25. }
    26.  
    27. Component {
    28. id: numberDelegate
    29. Item {
    30. width: 40
    31. height: 40
    32. Text {
    33. anchors.centerIn: parent
    34. font.pixelSize: 10
    35. text: index
    36. }
    37. }
    38. }
    39. }

    运行结果如下图所示:高亮代理

    在使用高亮时,QML 提供了很多属性,用于控制高亮的行为。例如,highlightRangeMode设置高亮如何在视图进行显示。默认值ListView.NoHighlightRange意味着高亮区域和项目的可视范围没有关联;ListView.StrictlyEnforceRange则使高亮始终可见,如果用户试图将高亮区域从视图的可视区域移开,当前项目也会随之改变,以便保证高亮区域始终可见;介于二者之间的是ListView.ApplyRange,它会保持高亮区域可视,但是并不强制,也就是说,如果必要的话,高亮区域也会被移出视图的可视区。

    默认情况下,高亮的移动是由视图负责的。这个移动速度和大小的改变都是可控的,相关属性有highlightMoveSpeedhighlightMoveDurationhighlightResizeSpeed以及 highlightResizeDuration。其中,速度默认为每秒 400 像素;持续时间被设置为 -1,意味着持续时间由速度和距离控制。同时设置速度和持续时间则由系统选择二者中较快的那个值。有关高亮更详细的设置则可以通过将highlightFollowCurrentItem属性设置为false达到。这表示视图将不再负责高亮的移动,完全交给开发者处理。下面的例子中,高亮代理的y属性被绑定到ListView.view.currentItem.y附加属性。这保证了高亮能够跟随当前项目。但是,我们不希望视图移动高亮,而是由自己完全控制,因此在y属性上面应用了一个Behavior。下面的代码将这个移动的过程分成三步:淡出、移动、淡入。注意,SequentialAnimationPropertyAnimation可以结合NumberAnimation实现更复杂的移动。有关动画部分,将在后面的章节详细介绍,这里只是先演示这一效果。

    1. Component {
    2. id: highlightComponent
    3. Item {
    4. width: ListView.view.width
    5. height: ListView.view.currentItem.height
    6. y: ListView.view.currentItem.y
    7.  
    8. Behavior on y {
    9. SequentialAnimation {
    10. PropertyAnimation { target: highlightRectangle; property: "opacity"; to: 0; duration: 200 }
    11. NumberAnimation { duration: 1 }
    12. PropertyAnimation { target: highlightRectangle; property: "opacity"; to: 1; duration: 200 }
    13. }
    14. }
    15.  
    16. Rectangle {
    17. id: highlightRectangle
    18. anchors.fill: parent
    19. color: "lightGreen"
    20. }
    21. }
    22. }

    最后需要介绍的是ListView的 header 和 footer。header 和 footer 可以认为是两个特殊的代理。虽然取名为 header 和 footer,但是这两个部分实际会添加在第一个元素之前和最后一个元素之后。也就是说,对于一个从左到右的横向列表,header 会出现在最左侧而不是上方。下面的例子演示了 header 和 footer 的位置。header 和 footer 通常用于显示额外的元素,例如在最底部显示“加载更多”的按钮。

    1. import QtQuick 2.2
    2.  
    3. Rectangle {
    4. width: 80
    5. height: 300
    6. color: "white"
    7.  
    8. ListView {
    9. anchors.fill: parent
    10. anchors.margins: 20
    11. clip: true
    12. model: 4
    13. delegate: numberDelegate
    14. spacing: 5
    15. header: headerComponent
    16. footer: footerComponent
    17. }
    18.  
    19. Component {
    20. id: headerComponent
    21. Rectangle {
    22. width: 40
    23. height: 20
    24. color: "yellow"
    25. }
    26. }
    27.  
    28. Component {
    29. id: footerComponent
    30. Rectangle {
    31. width: 40
    32. height: 20
    33. color: "red"
    34. }
    35. }
    36.  
    37. Component {
    38. id: numberDelegate
    39. Rectangle {
    40. width: 40
    41. height: 40
    42. color: "lightGreen"
    43. Text {
    44. anchors.centerIn: parent
    45. font.pixelSize: 10
    46. text: index
    47. }
    48. }
    49. }
    50. }

    ListView 的 header 和 footer

    需要注意的是,header 和 footer 与ListView之间没有预留间距。这意味着,header 和 footer 将紧贴着列表的第一个和最后一个元素。如果需要在二者之间留有一定的间距,则这个间距应该成为 header 和 footer 的一部分。

    GridViewListView非常相似,唯一的区别在于,ListView用于显示一维列表,GridView则用于显示二维表格。相比列表,表格的元素并不依赖于代理的大小和代理之间的间隔,而是由cellWidthcellHeight属性控制一个单元格。每一个代理都会被放置在这个单元格的左上角。

    1. import QtQuick 2.2
    2.  
    3. Rectangle {
    4. width: 240
    5. height: 300
    6. color: "white"
    7.  
    8. GridView {
    9. anchors.fill: parent
    10. anchors.margins: 20
    11. clip: true
    12. model: 100
    13. cellWidth: 45
    14. cellHeight: 45
    15. delegate: numberDelegate
    16. }
    17.  
    18. Component {
    19. id: numberDelegate
    20. Rectangle {
    21. width: 40
    22. height: 40
    23. color: "lightGreen"
    24. Text {
    25. anchors.centerIn: parent
    26. font.pixelSize: 10
    27. text: index
    28. }
    29. }
    30. }
    31. }

    GridView

    ListView类似,GridView也可以设置 header 和 footer,也能够使用高亮代理和类似列表的边界行为。GridView支持不同的显示方向,这需要使用flow属性控制,可选值为GridView.LeftToRightGridView.TopToBottom。前者按照先从左向右、再从上到下的顺序填充,滚动条出现在竖直方向;后者按照先从上到下、在从左到右的顺序填充,滚动条出现在水平方向。