import QtQuick 1.0
Rectangle {
Component {
id: delegate
Text{text: title}
}
ListView {
y:10
id: view
anchors.fill: parent
model: model
delegate: delegate
}
XmlListModel {
id:model
source: "http://www.w3.org/"
query: "/html/head"
namespaceDeclarations: "declare default element namespace 'www.w3.org/1999/xhtml/';"
XmlRole { name: "title"; query: "title/string()" }
}
}
私のモデルには title="World Wide Web Consortium (W3C)" の要素が 1 つ含まれているはずですが、何も表示されません。model.count はゼロですが、model.progress は 1 です 間違った名前空間宣言を使用していますか?
どうもありがとう
パトリック