This example shows how to create an online Help Form.
/* J2ME: The Complete Reference James Keogh Publisher: McGraw-Hill ISBN 0072227109 */ // jad file /* MIDlet-Name: OnlineHelp MIDlet-Version: 1.0 MIDlet-Vendor: MyCompany MIDlet-Jar-URL: OnlineHelp.jar MIDlet-1: OnlineHelp, , OnlineHelp MicroEdition-Configuration: CLDC-1.0 MicroEdition-Profile: MIDP-1.0 MIDlet-JAR-SIZE: 100 */ import javax.microedition.midlet.*; import javax.microedition.lcdui.*; public class OnlineHelp extends MIDlet implements CommandListener { private Display display; private Command back; private Command exit; private Command help; private Form form; private TextBox helpMesg; public OnlineHelp() { display = Display.getDisplay(this); back = new Command("Back", Command.BACK, 2); exit = new Command("Exit" Related Tips A Graphics MIDlet A method of using differnet fonts in Java ME A Midlet application for GIF Animation A MIDlet with Hello text and an Exit command A sample of graphics - commands and event handling A utility of startTimer A way to know when some changes are made in a list An example of MIDlet skeleton
You can share your information about this topic using the form below!
Please do not post your questions with this form! Thanks.
You can share your information about this topic using the form below!
Please do not post your questions with this form! Thanks.