qml listview实现循环

qmllistview实现循环... qml listview实现循环 展开
 我来答
  • 你的回答被采纳后将获得:
  • 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)
shen90p
2015-09-25 · TA获得超过251个赞
知道小有建树答主
回答量:205
采纳率:100%
帮助的人:133万
展开全部
想要什么样的效果,详细一点!!

ListView 不可以做 首尾相接的循环, 首尾相接的循环 要用PathView

Item{
width: 100
height: 300
ListView{
id: __list
anchors.fill: parent
clip: true
model:ListModel{
ListElement { name: "ele"}
ListElement { name: "ele"}
ListElement { name: "ele"}
ListElement { name: "ele"}
ListElement { name: "ele"}
ListElement { name: "ele"}
ListElement { name: "ele"}
ListElement { name: "ele"}
ListElement { name: "ele"}
ListElement { name: "ele"}
ListElement { name: "ele"}
}
delegate: Rectangle{
width: ListView.view.width
height:50
border.width: 1
border.color:"black"
color:"blue"
Text{
anchors.centerIn: parent
text: index
}
}
onAtYEndChanged: {
if(atYEnd && contentY > 0){
timer.start()
}
}
Rectangle {
id: scrollbar
anchors.right: __list.right
y: __list.visibleArea.yPosition * __list.height
width: 10
height: __list.visibleArea.heightRatio * __list.height
color: "black"
}
}
Timer {
id: timer
interval: 500; running: false; repeat: false
onTriggered: {__list.model.append([{"name":"ele"},{"name":"ele"},{"name":"ele"},{"name":"ele"},{"name":"ele"},{"name":"ele"}])}
}
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式