Hi,
I am having trouble with the setCurrent display.
When the user selects a option from my menu, I want to display an alert (alertModeratorStatus - which has a gauge in it) showing that some work is done, and when the work is done, it must show the next screen with the populated data.
However, the isShown always is false. I never see the alert. Why doesn't the alert gets displayed, timeout and then shows me the next screen? (listModeratorStatus). At the moment I only have a loop that never exists.
Any help and ideas appreciated.
case 5:
// Insert pre-action code here
getDisplay().setCurrent(get_alertModeratorStatus());
while (!alertModeratorStatus.isShown()) {
try {
Thread.sleep(50);
} catch (InterruptedException ex) {
ex.printStackTrace();
}
}
getDisplay().setCurrent(get_listModeratorStatus());
//Insert post-action code here
break;
case 6:

Reply With Quote


