|
How to use StringItem class |
|
|
This example shows how to use StringItem class in MIDP.
 |
 |
/*
J2ME: The Complete Reference
James Keogh
Publisher: McGraw-Hill
ISBN 0072227109
*/
//jad file (please verify the jar size)
/*
MIDlet-Name: StringItemExample
MIDlet-Version: 1.0
MIDlet-Vendor: MyCompany
MIDlet-Jar-URL: StringItemExample.jar
MIDlet-1: StringItemExample, , StringItemExample
MicroEdition-Configuration: CLDC-1.0
MicroEdition-Profile: MIDP-1.0
MIDlet-JAR-SIZE: 100
*/
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
public class StringItemExample extends MIDlet
implements CommandListener
{
private Display display;
private Form form;
private StringItem question;
private Command giveup;
private Command exit;
public StringItemExample()
{
display = Display.getDisplay(this);
question = new StringItem("Question: ",
"A plane crashes on the border between Canada"
+"and the US. Where are the survivors buried?");
giveup = new Command("Give Up", Command.SCREEN, 1);
exit = new Command("Exit", Command.EXIT, 1);
form = new Form("Quiz");
form.addCommand(exit);
form.addCommand(giveup);
form.append(question);
form.setCommandListener(this);
}
public void startApp()
{
display.setCurrent(form);
}
public void pauseApp()
{
}
public void destroyApp(boolean unconditional)
{
}
public void commandAction(Command command, Displayable displayable)
{
if (command == giveup)
{
question.setLabel("Answer: ");
question.setText("Survivors are not buried.");
form.removeCommand(giveup);
}
else if (command == exit)
{
destroyApp(false);
notifyDestroyed();
}
}
}
|
Related Tips
|
Page 1 of 0 ( 0 comments )
You can share your information about this topic using the form below!
Please do not post your questions with this form! Thanks.