I am trying to get my Blackberry application to display a custom modal dialog, and have the opening thread wait until the user closes the dialog screen.
fina
Use this:
UiApplication.getUiApplication().invokeAndWait(new Runnable() { public void run() { pushScreen(new MyScreen()); } });