This is exactly what I want.. You have been very helpful.. Thx a lot..
Main Topics
Browse All TopicsI am a beginner in J2ME.
May I know how to use the Alert ? How to construct it and how to use it?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: bgloddePosted on 2006-02-18 at 10:30:00ID: 15989725
Hi recoder,
******
*; ;
and); ;
);
****** /midp/java x/microedi tion/lcdui / Alert.htm l /midp/java x/microedi tion/lcdui / AlertType .html
techtopics /mobility/ midp/ttips / alerts20/ index.html
Here's a compilable example midlet that creates an AlertType.INFO Alert
**************************
import javax.microedition.midlet.
import javax.microedition.lcdui.*
public class AlertExample extends MIDlet implements CommandListener {
Display display;
Command infoAlertCommand = new Command("Info Alert", Command.SCREEN, 1);
Command exitCommand = new Command("Exit", Command.STOP, 2);
Form f = new Form("My Alert Example");
public AlertExample() {
display = Display.getDisplay(this);
f.addCommand(infoAlertComm
f.addCommand(exitCommand);
f.setCommandListener(this)
}
public void startApp() {
display.setCurrent(f);
}
public void pauseApp() {
}
public void destroyApp(boolean unconditional) {
display = null;
}
public void commandAction(Command c, Displayable d) {
if (c == infoAlertCommand) {
Alert myalert = new Alert("== Alert Example ==", "This is a test. Only a test.", null, AlertType.INFO);
myalert.setTimeout(5000); // milliseconds
display.setCurrent(myalert
}
}
}
**************************
http://www.j2medev.com/api
http://www.j2medev.com/api
MIDP 2.0 has added some features:
http://developers.sun.com/
Hope that helps!