I've implemented a simple list model and list delegate in QML, and now curious if it feasible to make the underlying list cyclic. Here is the code snippet:

      Common.MarketsListView {
      id: markets
      anchors.top: logoImage.bottom
      anchors.topMargin: 5
      cacheBuffer: 20000

      NumberAnimation on x {
          running: runtime.isActiveWindow
          loops: Animation.Infinite
          from: 0
          to: -300
          duration: 20000
      }

Currently, the list slowly moves to the left, but as it reaches the end only few last items are shown. So I shall either make the underlying list cyclic, or hard-code the jump to the first list item :(

link|improve this question

feedback

1 Answer

You can't do this with a ListView, but you may be able to get the bahavior you want using PathView, e.g. http://doc.qt.nokia.com/4.7-snapshot/declarative-ui-components-spinner.html

link|improve this answer
thanks for the link! I haven't looked at PathView yet, but yes, it seems plausible -- I've immediately remembered an example they gave us at Qt dev days -- should work! – MadH Nov 22 '10 at 16:55
Yes, I think pathview is what you want in this situation, it will let your cycle through your list without there being an "end" to the list. – Millhouse Dec 6 '10 at 18:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.