13

当使用 AlertDialog 创建 DialogFragment 时,如何禁用它的 OK/Cancel 按钮?我尝试调用 myAlertDialogFragment.getDialog() 但即使显示片段,它也总是返回 null

public static class MyAlertDialogFragment extends DialogFragment {

    public static MyAlertDialogFragment newInstance(int title) {
        MyAlertDialogFragment frag = new MyAlertDialogFragment();
        Bundle args = new Bundle();
        args.putInt("title", title);
        frag.setArguments(args);
        return frag;
    }

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        int title = getArguments().getInt("title");

        return new AlertDialog.Builder(getActivity())
                .setIcon(R.drawable.alert_dialog_icon)
                .setTitle(title)
                .setPositiveButton(R.string.alert_dialog_ok,
                    new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface dialog, int whichButton) {
                            ((FragmentAlertDialog)getActivity()).doPositiveClick();
                        }
                    }
                )
                .setNegativeButton(R.string.alert_dialog_cancel,
                    new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface dialog, int whichButton) {
                            ((FragmentAlertDialog)getActivity()).doNegativeClick();
                        }
                    }
                )
                .create();
    }
}

我知道我可以通过膨胀包含取消和确定按钮的布局来实现它,但如果可能的话,我宁愿使用 AlertDialog 解决方案

4

2 回答 2

30

您需要覆盖 DialogFragment 中的 onStart() 并保留对按钮的引用。然后,您可以稍后使用该引用重新启用该按钮:

Button positiveButton;

@Override
public void onStart() {
    super.onStart();
    AlertDialog d = (AlertDialog) getDialog();
    if (d != null) {
        positiveButton = d.getButton(Dialog.BUTTON_POSITIVE);
        positiveButton.setEnabled(false);
    }

}
于 2014-05-05T20:43:07.390 回答
28

将您的 AlertDialog 附加到变量:

AlertDialog.Builder builder = new AlertDialog.Builder(this);
(initialization of your dialog)
AlertDialog alert = builder.create();
alert.show();

然后从您的 AlertDialog 中获取按钮并将其设置为禁用/启用:

Button buttonNo = alert.getButton(AlertDialog.BUTTON_NEGATIVE);
buttonNo.setEnabled(false);

它使您有机会在运行时更改按钮属性。

然后返回您的警报变量。

必须在获取其视图之前显示 AlertDialog。

于 2013-04-09T20:50:35.053 回答