如何在黑莓的对话框上添加另一个按钮

发布于 2024-12-04 06:41:05 字数 229 浏览 1 评论 0原文

可能的重复:
如何创建自定义对话框

我正在制作一个对话框 。 我想创建两个按钮是(“查看”)和“取消”按钮。 如何在对话框上创建“查看”按钮?

Possible Duplicate:
How to create a custom dialog

I am making a dialog .
I want to creat two button is (" View " ) and " Cancel " button.
How do I creat " View " button on Dialog ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

初相遇 2024-12-11 06:41:05

您可以使用dialog.ask,而不是创建自定义对话框,如下代码所示:

int i = Dialog.ask(""Your text", new String[] {"View", "Cancel"}, new int[] {1, 2}, 1);
if (i == 1)
     //your code for view button
else if (i == 2)
     //your code for cancel button

Instead of creating a custom dialog, you can use the dialog.ask like the code below:

int i = Dialog.ask(""Your text", new String[] {"View", "Cancel"}, new int[] {1, 2}, 1);
if (i == 1)
     //your code for view button
else if (i == 2)
     //your code for cancel button
梦明 2024-12-11 06:41:05
  1. 从 Dialog 类扩展 CustomDiaolog
  2. 创建要创建的按钮对象
  3. 添加所需的侦听器或 navigationClick 或 keyChar 事件
  4. 将它们添加到 CustomDiaolog
    就这样。
  1. Extend your CustomDiaolog from Dialog class
  2. Create the button object that you want to create
  3. Add required listeners or navigationClick or keyChar event
  4. Add them to the CustomDiaolog
    that's all.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文