Hallo ich bin neu hier den ich habe neulich auch mal angefangen Java 2me zu programmieren und stehe da vor einem prob.
Ich würde gern ein auswahl Menü schreiben, wo es mehrere Titel gibt und wenn man eines Anwählt man dann in das entsprechende Untermenü kommt.
Z.B.
1. Addressen -- > Name
2. Spiele --> Action -->
Strategie -->
Denksport -->
Wisst ihr was ich meine? könnte mir das vielleicht jemand erklären oder hat jemand ein fertigen Quelltext der das Thema behandelt und gibt ihn mir?
Oder vllt kann es mir jemand an folgendem Bsp erklären?
Ein normales Hello World und ich will zb. das
Hello --> World
Hallo --> Welt
das im hauptmenü Hello und Hallo steht und jedes soll halt bei anwahl in das entsprechende Menü gehen, entweder World oder Welt
MfG und danke im vorraus für eure hilfe.
Ich würde gern ein auswahl Menü schreiben, wo es mehrere Titel gibt und wenn man eines Anwählt man dann in das entsprechende Untermenü kommt.
Z.B.
1. Addressen -- > Name
2. Spiele --> Action -->
Strategie -->
Denksport -->
Wisst ihr was ich meine? könnte mir das vielleicht jemand erklären oder hat jemand ein fertigen Quelltext der das Thema behandelt und gibt ihn mir?
Oder vllt kann es mir jemand an folgendem Bsp erklären?
Code:
import javax.microedition.midlet.MIDlet;
import javax.microedition.lcdui.*;
public class HelloWorldMidlet extends MIDlet implements CommandListener {
public HelloWorldMidlet() {
}
private Display display;
private Form form;
private StringItem stringItem;
private Command exitCommand;
public void commandAction(Command command, Displayable displayable) {
if (displayable == form) {
if (command == exitCommand) {
exitMIDlet();
}
}
}
public void startApp() {
stringItem = new StringItem("Hello", "World");
form = new Form(null, new Item[] {stringItem});
exitCommand = new Command("Exit", Command.EXIT, 1);
form.addCommand(exitCommand);
form.setCommandListener(this);
display = Display.getDisplay(this);
display.setCurrent(form);
}
public void pauseApp() {
}
public void destroyApp(boolean unconditional) {
}
public void exitMIDlet() {
display.setCurrent(null);
notifyDestroyed();
}
}
Ein normales Hello World und ich will zb. das
Hello --> World
Hallo --> Welt
das im hauptmenü Hello und Hallo steht und jedes soll halt bei anwahl in das entsprechende Menü gehen, entweder World oder Welt
MfG und danke im vorraus für eure hilfe.