1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
| import javax.microedition.midlet.*;
import com.sun.lwuit.*;
import com.sun.lwuit.events.*;
public class Midlet extends MIDlet implements ActionListener {
String recherche = null;
public void startApp() {
Display.init(this);
final Form f = new Form("Bla Bla Bla");
final TextField field = new TextField();
Button envoyer = new Button("Envoyer");
final Label result = new Label(" ");
envoyer.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
recherche = field.getText();
result.setText("le mot "+recherche+" est dans le fichier");
}
});
f.addComponent(envoyer);
f.addComponent(field);
f.addComponent(result);
f.show();
Command exitCommand = new Command("Exit");
f.addCommand(exitCommand);
f.setCommandListener(this);
}
public void pauseApp() {}
public void recherche() {
}
public void destroyApp(boolean unconditional) {}
public void actionPerformed(ActionEvent ae) {
notifyDestroyed();
}
} |
Partager