简体   繁体   English

当EditText为空时,防止AlertDialog关闭

[英]Prevent AlertDialog from closing when EditText is empty

So without having to create a custom dialog as I currently have a number of dialog layouts and don't want to have to do it for each one, is there a way to prevent this dialog from closing when the positive button is pressed and the EditText is empty? 因此,不必创建自定义对话框,因为我当前有许多对话框布局,并且不想为每个对话框都这样做,有没有一种方法可以防止在按下肯定按钮和EditText时关闭此对话框是空的?

Currently it closes the dialog every time I hit enter and there is nothing in the EditText field. 目前,每次我按Enter键时,它都会关闭对话框,并且EditText字段中没有任何内容。

public AlertDialog webpageDialog() {
    AlertDialog.Builder webpageDialogBuilder = new AlertDialog.Builder(context);
    LayoutInflater inflater = LayoutInflater.from(context);
    webpageDialogBuilder.setView(inflater.inflate(R.layout.dialog_webpage, null))
            .setNegativeButton(context.getString(R.string.cancel), new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int id) {
                    dialog.cancel();
                }
            });
    final AlertDialog webpageDialog = webpageDialogBuilder.create();

    webpageDialog.setButton(DialogInterface.BUTTON_POSITIVE, context.getString(R.string.enter), new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int id) {
            EditText webpageInput = (EditText) webpageDialog.findViewById(R.id.dw_et_webpage_address);
            Log.d(TAG, "Positive on click");
            if(TextUtils.isEmpty(webpageInput.getText().toString())){
                Log.d(TAG, "Edit text empty");
                webpageInput.setError(context.getString(R.string.error_web_required));
            } else {
                Log.d(TAG, "Edit text not empty");
                ms.setUriString("http://" + webpageInput.getText().toString());
                ms.returnWithResult(1);
                dialog.cancel();
            }
            Log.d(TAG, "Returning");
        }
    });
    Log.d(TAG, "Returning dialog");
    return webpageDialog;
}

this is how I'm doing it. 这就是我的做法。

        AlertDialog.Builder builder = new AlertDialog.Builder(this);

        LinearLayout layout = new LinearLayout(this);
        layout.setOrientation(LinearLayout.VERTICAL);

        EditText yourEditText = new EditText(this);
        layout.addView(yourEditText);

        builder.setView(layout);

        // Set up the buttons
        builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {

            }
        });
        builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                dialog.cancel();
            }
        });

        final AlertDialog dialog = builder.create();

        dialog.show();

        dialog.getButton(AlertDialog.BUTTON_POSITIVE).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                if ("".equals(yourEditText.getText().toString().trim())) {
                    //this will stop your dialog from closing
                    yourEditText.setError("This field is required!");
                    return;

                }

                //you logic here


                dialog.dismiss();

            }
        });

希望以下内容能对您有所帮助

webpageDialogBuilder.setCancelable(false);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM