Is it possible to display consecutive 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);
share|improve this question

1 Answer

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.

share|improve this answer
1  
thanx for the suggestion but if i set the timeout then the midlet exits... so this didnot work in my case.. – RNZN Jul 1 '11 at 7:53

Your Answer

 
or
required, but never shown
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.