navigate one screen to another screen based on time period in blackberry-Eclips
Posted
by upendra
on Stack Overflow
See other posts from Stack Overflow
or by upendra
Published on 2010-05-20T11:15:23Z
Indexed on
2010/05/20
11:20 UTC
Read the original article
Hit count: 216
Hi Friends,
I am using Blackberry eclipse environment , for blackberry application i am using start up screen with process bar , i am filing progress bar using timer, after process bar 100% completed then need to navigate the screen to another screen, i am checking like this
timer.cancel();
if(i>=99)
UiApplication.getUiApplication().pushScreen(new TipCalculatorScreen());
here i is time, increased form 0 to 100
but this code is not working how to navigate the screen form one page to another page after process bar is completed, please give me small example.
© Stack Overflow or respective owner