开发者

Alert Message displaying in J2ME

开发者 https://www.devze.com 2023-03-16 11:30 出处:网络
Is it possible to display c开发者_如何转开发onsecutive Alert message in j2me... If Yes, could u help me?

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消