J2ME 中显示的警报消息
是否可以在 j2me 中显示连续的警报消息...如果是,你能帮助我吗?
我想显示短信发送警报以通知用户,然后向用户显示短信接收警报...
该怎么做?
Alert message = new Alert("info");
message.setString("sending");
display.setCurrrent(message);
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);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,警报有超时。您可以使警报在一定时间内可见。为此,请使用
setTimeout()
。其次,您始终可以构造其他警报并再次调用
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.