[Android]Alertdialog onclick 返回布尔值

发布于 2024-11-25 18:35:08 字数 947 浏览 0 评论 0原文

我的 AlertDialog 有问题:如果用户单击“肯定”按钮,我希望我的 AlertDialog 返回 true;如果单击“否定”按钮,则返回 false。该函数必须阻止程序,直到用户单击按钮。

我的代码:

public static boolean errorMD5(Context context){
    AlertDialog.Builder builder = new AlertDialog.Builder(context);
    builder.setTitle(context.getString(R.string.error));
    builder.setIcon(android.R.drawable.ic_dialog_alert);
    builder.setMessage(R.string.errorMD5);
    builder.setPositiveButton(R.string.retry, new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int which) {
            //The function return true
        }
    });
    builder.setNegativeButton("No", new DialogInterface.OnClickListener() {         
            @Override
            public void onClick(DialogInterface arg0, int arg1) {
               //The function return false                    
            }
    });
    AlertDialog alert = builder.create();
    alert.show();
}

I have a problem with a AlertDialog : I'ld like that my AlertDialog return true if the user click on Positive button and false if he click on negative button. The function must block the program until the user click on a button.

My code :

public static boolean errorMD5(Context context){
    AlertDialog.Builder builder = new AlertDialog.Builder(context);
    builder.setTitle(context.getString(R.string.error));
    builder.setIcon(android.R.drawable.ic_dialog_alert);
    builder.setMessage(R.string.errorMD5);
    builder.setPositiveButton(R.string.retry, new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int which) {
            //The function return true
        }
    });
    builder.setNegativeButton("No", new DialogInterface.OnClickListener() {         
            @Override
            public void onClick(DialogInterface arg0, int arg1) {
               //The function return false                    
            }
    });
    AlertDialog alert = builder.create();
    alert.show();
}

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

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

发布评论

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

评论(1

疯狂的代价 2024-12-02 18:35:08

在你的 Activity 中你应该实现 2 个函数。

 onYesPressed() and onNoPressed()

并从您的对话框中调用它们。

或者,您可以仅实现一个采用布尔参数的函数

    onUserDismissDialog(boolean allow)

,并从对话框 OnClickListener 调用此函数。

In your Activity you should implement 2 functions.

 onYesPressed() and onNoPressed()

and call them from your dialog.

Or you can implement just a function that takes a boolean parameter

    onUserDismissDialog(boolean allow)

and call this function from your dialog OnClickListener.

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