J2ME 中显示的警报消息

发布于 2024-11-17 21:51:58 字数 218 浏览 3 评论 0原文

是否可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北音执念 2024-11-24 21:51:58

首先,警报有超时。您可以使警报在一定时间内可见。为此,请使用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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文