如何在 BlackBerry 中显示对话框

发布于 2024-10-20 02:16:46 字数 40 浏览 3 评论 0原文

如何向用户显示一个对话框,询问他是否要继续,并选择“是”或“否”?

How do I display a dialog to the user asking him if he wants to continue, with a choice of yes or no?

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

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

发布评论

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

评论(4

小兔几 2024-10-27 02:16:46

您需要使用 Dialog 之一 由 BB 提供,如 Dialog.ask(someNumber,"您的消息");

You need to use one of the Dialogs provided by BB like Dialog.ask(someNumber,"Your message");

回忆躺在深渊里 2024-10-27 02:16:46
Dialog d = new Dialog("Do you want to continue?", new String[]{"Yes","No"},  new int[]{Dialog.OK,Dialog.CANCEL}, Dialog.OK, Bitmap.getPredefinedBitmap(Bitmap.QUESTION)){
                    public void setChangeListener(FieldChangeListener listener) {
                        if(d.getSelectedValue() == Dialog.OK){
                             //true part                                
                        }
                        else{
                             //false part
                        }
                    };
                };
d.show();
Dialog d = new Dialog("Do you want to continue?", new String[]{"Yes","No"},  new int[]{Dialog.OK,Dialog.CANCEL}, Dialog.OK, Bitmap.getPredefinedBitmap(Bitmap.QUESTION)){
                    public void setChangeListener(FieldChangeListener listener) {
                        if(d.getSelectedValue() == Dialog.OK){
                             //true part                                
                        }
                        else{
                             //false part
                        }
                    };
                };
d.show();
预谋 2024-10-27 02:16:46

来晚了,但可能对将来的人有帮助:

int ans =  Dialog.ask(Dialog.D_YES_NO, "Do you want to continue?", Dialog.YES);

    if (ans == Dialog.YES) 
        // Continue
    else
        // Do not Continue

第三个参数表示默认选择的选项,该选项设置为“是”选项。

这是一篇有关如何使用不同类型的 Blackberry 对话框的文章。

Came here late but maybe helpful to someone in future:

int ans =  Dialog.ask(Dialog.D_YES_NO, "Do you want to continue?", Dialog.YES);

    if (ans == Dialog.YES) 
        // Continue
    else
        // Do not Continue

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.

ま柒月 2024-10-27 02:16:46

使用 JOptionPane :

int res = JOptionPane.showConfirmDialog(null,"Do you want to continue ?");
if (int == 0){
   // code for continue
}
else {

}

use JOptionPane :

int res = JOptionPane.showConfirmDialog(null,"Do you want to continue ?");
if (int == 0){
   // code for continue
}
else {

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