how to close a popup screen in blackberry bold
Posted
by SWATI
on Stack Overflow
See other posts from Stack Overflow
or by SWATI
Published on 2010-04-02T12:04:40Z
Indexed on
2010/04/02
13:23 UTC
Read the original article
Hit count: 440
hey i have displayed a pop-up screen when i click on a menu item
now i want to close that pop-up screen when user presses escape key.but it does not work and remain stuck,till i click on a button on the pop=up screen.
how can i achieve that???? filter is my pop-up screen my code is :::
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()
{
//UiApplication.getUiApplication().popScreen(filter);
UiApplication.getUiApplication().
popScreen(UiApplication.getUiApplication().getActiveScreen());//(filter);
}
});
retVal = super.keyChar(c,status,time);
}
return retVal;
}
© Stack Overflow or respective owner