1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114 | JSONListModel{
id:jsonModel
source: "http://news-at.zhihu.com/api/4/news/latest"
query: "$.stroies[*]"
}
Component {
id: listDelegate
BorderImage {
source: "http://pic2.zhimg.com/d4691da85d8f7c4a845bcac5ec49f479.jpg"
border { top:4; left:4; right:100; bottom: 4 }
anchors.right: parent.right
// width: mainScreen.width
width: ListView.view.width
property int fontSize: 25
Rectangle {
id: imageId
x: 6; y: 4; width: parent.height - 10; height:width; color: "white"; smooth: true
anchors.verticalCenter: parent.verticalCenter
BorderImage {
source: model.images; x: 0; y: 0
height:parent.height
width:parent.width
anchors.verticalCenter: parent.verticalCenter
}
}
Text {
x: imageId.width + 20
y: 15
width: ListView.view.width*2/3
text: model.title; color: "white"
font { pixelSize: fontSize; bold: true }
elide: Text.ElideRight; style: Text.Raised; styleColor: "black"
}
}
} JSONListModel{
id:jsonModel
source: "http://news-at.zhihu.com/api/4/news/latest"
query: "$.stroies[*]"
}
Component {
id: listDelegate
BorderImage {
source: "http://pic2.zhimg.com/d4691da85d8f7c4a845bcac5ec49f479.jpg"
border { top:4; left:4; right:100; bottom: 4 }
anchors.right: parent.right
// width: mainScreen.width
width: ListView.view.width
property int fontSize: 25
Rectangle {
id: imageId
x: 6; y: 4; width: parent.height - 10; height:width; color: "white"; smooth: true
anchors.verticalCenter: parent.verticalCenter
BorderImage {
source: model.images; x: 0; y: 0
height:parent.height
width:parent.width
anchors.verticalCenter: parent.verticalCenter
}
}
Text {
x: imageId.width + 20
y: 15
width: ListView.view.width*2/3
text: model.title; color: "white"
font { pixelSize: fontSize; bold: true }
elide: Text.ElideRight; style: Text.Raised; styleColor: "black"
}
}
}
UbuntuListView {
id: listView
width: mainScreen.width
height: mainScreen.height
model: jsonModel
delegate: listDelegate
//delegate: sampleListModel
}
Scrollbar {
flickableItem: listView
}
}
UbuntuListView {
id: listView
width: mainScreen.width
height: mainScreen.height
model: jsonModel
delegate: listDelegate
//delegate: sampleListModel
}
Scrollbar {
flickableItem: listView
}
}
|