Is it possible to display c开发者_如何转开发onsecutive Alert message in j2me... If Yes, could u help me?
i wanna display sms send alert to info the user and after that display the sms receiving alert to the user...
how can it be done?
Alert message = new Alert("info");
message.setString("sending");
display.setCurrrent(message);
First, Alert has a timeout. You can make alert visible for the certain amount of time. Use setTimeout()
for this.
Second, you can always construct other alert and call display.setCurrrent(message);
again.
精彩评论