09-07-2012 01:55 AM
I am porting BB (Java) application to BB10. Can anyone please guide me from where I can get these details in cascades development?
09-07-2012 02:59 AM
Build one qml.And use the button field.
2.Custom UI (like listview, list selection etc)
Build one qml and put into listview.
https://developer.blackberry.com/cascades/referenc
3. Json/XML parser
4. Splash screen concept
You put Splash Screen into bar-descriptor.xml in application tab.
Thanks.
--------------------------------------------------
feel free to press the like button on the right side to thank the user that helped you.
09-07-2012 04:43 AM
how we can create Background Thread or run on startup like we have in Java BB implementation??
About the tabs I have created in BB Java but not any idea how I can do.
09-07-2012 03:22 PM
For UI tab, you can check this https://developer.blackberry.com/cascades/document
Also, there is a sample app, weatherGuesser, available under https://github.com/blackberry/Cascades-Samples/tre
For BackGround thread, not sure if this is what you're looking for https://developer.blackberry.com/cascades/document
Hope this helps.
09-08-2012 01:13 AM
I need to display splash screen for 4 sec and during this time I need to make network connection and get the data in the background .
09-08-2012 01:20 AM
Hello,
As per my previous answer you put the splash screen like this
>>>>>>>>>>>>>
. Splash screen concept
You put Splash Screen into bar-descriptor.xml in application tab.
>>>>>>>>>>>>>
After that the you write this code " make network connection and get the data in the background" into cpp class which you call the screen after splash screen.(So you not given any time into splash screen at that time they set time as per webservice calling time)
Thanks.