如何在 BlackBerry 中显示对话框
如何向用户显示一个对话框,询问他是否要继续,并选择“是”或“否”?
How do I display a dialog to the user asking him if he wants to continue, with a choice of yes or no?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要使用
Dialog
之一 由 BB 提供,如Dialog.ask(someNumber,"您的消息");
You need to use one of the
Dialog
s provided by BB likeDialog.ask(someNumber,"Your message");
来晚了,但可能对将来的人有帮助:
第三个参数表示默认选择的选项,该选项设置为“是”选项。
这是一篇有关如何使用不同类型的 Blackberry 对话框的文章。
Came here late but maybe helpful to someone in future:
The third parameter states the default selected option which is set to the
Yes
option.Here's an article on how to work with different types of Blackberry dialogs.
使用 JOptionPane :
use JOptionPane :