[Solved] How can I show dialog box on canvas in J2ME mobile application? [duplicate]
Ok, I think you must do that. The right thing in LWUIT is using Dialog. Create a Dialog using new. i.e. Dialog d = new Dialog() The next step is filling the title and body with Dialog.setTitle(String text) or putting something inside the Dialog‘s layout. When your Dialog is ready to be shown, you must … Read more