My screen have a lots of content so main VerticalFieldManager have Scroll property set to view all content using scroll.

All Content set properly and i can see all content using Scrollview But when i Scroll this page vertically than i click on my Back Button and i want to pop this screen .. when i click on back button first time nothing happened and when i click on second time this screen pop properly . i dont know what happen at first click evnet .

Other screen pop properly which have not scroll on this screen .

check click evnet of Back Button

UiApplication.getUiApplication().popScreen(CurrenScreenName.this);

Thanks in Advance !!!

link|improve this question

47% accept rate
1  
paste the code.. which will help to understand the problem in code. – Nilanchala Nov 3 '11 at 4:59
please check my back button click event code – Coder Nov 3 '11 at 6:25
If you want to pop the current screen any where in the application... write like this UiApplication.getUiApplication().popScreen(UiApplication.getUiApplication().getA‌​ctiveScreen()); – alishaik786 Nov 3 '11 at 13:55
this problem occure in only in my BB storm 2 9550 . in other Simulator it is working fine – Coder Dec 6 '11 at 15:52
feedback

3 Answers

Use this

UiApplication.getUiApplication().popScreen(UiApplication.getUiApplication().getA‌​ctiveScreen());

or

UiApplication.getUiApplication().popScreen(this);
link|improve this answer
feedback
 Application.getApplication().invokeLater(new Runnable() {

 public void run() {
 UiApplication.getUiApplication().popScreen(UiApplication.getUiApplication().getActiveScreen());                                                     
                   }
 }); 
link|improve this answer
feedback

Same thing happend to me, I used this:

do{ UiApplication.getUiApplication().popScreen(UiApplication.getUiApplication().getActiveScreen()); }while(UiApplication.getUiApplication().getActiveScreen().toString().indexOf("YOUR_CLASS_NAME") < 0);

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.