Kartik Bhatt
Kartik Bhatt

Reputation: 924

Move to First Screen in Blackberry

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

Answers (1)

Nikunj
Nikunj

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

Related Questions