The UI should be like
In this I have dynamicaly parsed the contents in the xml.aspx uisng XmlListModel Qt application
XmlListModel {
id: feedModel
source: "http://www.yupptv.com/mobile/symbianxml.aspx"
query: "/root/channel" // flickr and tedtv
XmlRole { name: "name"; query: "name/string()" }
XmlRole { name: "id"; query: "id/string()" }
XmlRole { name: "type"; query: "type/string()" }
XmlRole { name: "language"; query: "language/string()" }
XmlRole { name: "image"; query: "image/string()" }
XmlRole { name: "link"; query: "link/string()" }
XmlRole { name: "bandwidth"; query: "bandwidth/string()" }
XmlRole { name: "cellnapid"; query: "cellnapid/string()" }
}
Presently Iam able to parse the contents in xml.aspx and show my channel images list in a vertical row manner and able to play the video also.
I want few more changes in the UI.
1st View languages list will be displayed
ln the following sequence:
English
Hindi
Tamil
Telugu
Malayalam
Kannada
Punjabi
2 nd View when a language is selected, TV channels related to it are displayed
3.nd view When clicked on TV channel video will be played.
Please guide How shall I proced to achieve my targets.
You can understand my project by downloading the below symbian app which I want the same in Qt
"http://store.ovi.com/content/202150?clickSource=search&pos=1"]



