Reputation: 51
In my application , am using popup screen, that implements FieldChangeListener.I used close() method for back button. but its not working.
Can some give sample code without using KeyListener
,TrackwheelListener
?
Upvotes: 0
Views: 522
Reputation: 2918
if u want to close the popup screen on back button try this:
UiApplication.getUiApplication().
popScreen(UiApplication.getUiApplication().getActiveScreen());
Upvotes: 2