Reputation: 924
I my application, I display 3 to 4 Screen using following code.
main.pushScreen(screen);
Now I want to display first screen.
How to achieve this ?
Upvotes: 1
Views: 141
Reputation: 245
Now again to display first screen, You need to create an object of first screen once again and display using following code.
main.pushscreen(firstscreen).
Hope it will help you.
Upvotes: 1