Hello all,
I use the following global dialog to show up some message after user exited application and my app notified for checking some task.
synchronized( UiApplication.getEventLock() ) {
UiEngine ui = Ui.getUiEngine();
Screen screen = new Dialog(Dialog.D_OK, "My Message",
Dialog.OK, Bitmap.getPredefinedBitmap(Bitmap.EXCLAMATION),
Manager.VERTICAL_SCROLL);
ui.pushGlobalScreen(screen, 1, UiEngine.GLOBAL_QUEUE);
}
I want to add Title of this dialog as my App Title, and Some message(already i'm giving that...) and remove the Exclamation or whatever default icon has given to this dialog. I don't want ANY ICON though in this dialog.
Could someone please suggest me if you have used it?
Thank you. Appreciate if you could help me out on this.