Hi ,
I have an push application that runs during the startup of the device. Whenever a push message is received a pop up window is shown using the following code
Code:
UiEngine ui = Ui.getUiEngine();
ui.queueStatus((Screen)alert, 1, true);
where "alert" is a custom pop up screen with few buttons. When one of the button is pressed am pushing another screen like this
Code:
this.getUiEngine().queueStatus((Screen)detailedWindow,2,true);
where "detailedWindow" is class extending MainScreen with some text and buttons in them.
Am facing the following problems
1) when a new message is recieved the custom popup screen shows up but it hides the detailedwindow. If there is some other application thats open, other than the detailedwindow, then this custom popup screen shows above it.( as it is supposed to work)
2) whenever menu button is pressed in the detailedwindow, the menu shows up but the detailedwindow is hidden. It shown only after the menu is dismissed.
I cannot use pushGlobalScreen as my application has to run on 7000 series blackberries too.
Would appreciate if someone can help.
thanks
krishnan