Hi, I have a pop-up screen when I click on a menu item
now I want to close this pop-up screen when the user presses the escape key key.but key. but it doesnβt work and remains stuck until I press a button on the pop-up screen.
how can i achieve this ???? filter - my popup screen is my code:
protected boolean keyChar(char c, int status, int time) { boolean retVal = false; if (c == Characters.ESCAPE) { close(); UiApplication.getUiApplication().invokeLater(new Runnable() { public void run() {
source share