i used the follwing code to show an splashscreen
http://wiki.forum.nokia.com/index.ph...implementation
now how can i close my splashscreen to open my application
thank u
i used the follwing code to show an splashscreen
http://wiki.forum.nokia.com/index.ph...implementation
now how can i close my splashscreen to open my application
thank u
Delete the CSimpleSplashScreen object?
-- Lucian
Show us your Timer Implementation .
i don't know how to implement a timer that's y iam asking how can i implement the timer and how can i destroy the splashsrenn object
thank u
Oops no timer. But the example clearly saysAnyways for timer implementation refer toTo use CSimpleSplashScreen, just construct it in your application user interface class and start a timer, and when the timer expires, just destroy the splash screen and start your application normal start screen.
http://wiki.forum.nokia.com/index.ph...implementation
so how can i create object to cexampletimer calss
i added this cpp and .h file to my project
in constructor we have a pramameter with type MExampleTimerNotify.
so wht value should i pass it to this parameter
CPeriodic is the simplest way out.
Start a periodic timer at constructl, say for 2-3 seconds (your desired time) and then after the timer expires, it will call back the function you had specified while starting periodic time, and at this function simply change the view
search for CPeriodic in wiki for easy lines of code.
you can also search for splash in wiki![]()
Amit Kankani
Nokia Developer Champion
actually in my apllication 1st it will search for net after tht my aplication was lanched in between i need a splash screen.
but i don't know how much time it will search for net
well then you can do this:
once connected to net and you get the first response, then do a viewChange
also you can show a progress bar in the splash somewhere, by counting number of bytes received / total number of bytes (can be got from the first header say 200 OK) .... use your creativity here![]()
Amit Kankani
Nokia Developer Champion