Hello all,
i am making a QML application for symbian devices which has a very rich GUI at the same time all the data is coming from web services in form a xml.
So what i have done is my all parsing and logic engines are written in c++ and the UI is written in QML. Now i am facing some problems in that.
When i start the application i make a QNetworkAccessManager get request to get the initial data to show. At that time i load a main.qml file which only have a wait indicator.
Now when the asynchronous get method completes inside my slot GotNetworkReply, i am starting to parse the xml response and then i want to show another QML view for that i use the following code:
QDeclarativeView homeScreenView;
homeScreenView.SetSource("my QML path");
homeScreenView.Show();
QDeclarativeView homeScreenView;
homeScreenView.SetSource("my QML path");
homeScreenView.Show();
To copy to clipboard, switch view to plain text mode
I get no error but my homescreen QML file doesnt shows up, can any body help me what wrong i am doing or what's the other approach to update the data in QML from C++.
Regards
Ronald
Bookmarks