Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I create AlertDialog, I set setOnCanceledOnTouchOutside and setCancelable params, but then I click outside dialog it hides. Maybe someone can help me?

dialog = new AlertDialog.Builder(getContext()).setView(table).setTitle(R.string.order_start_title)
.setNegativeButton(R.string.dialog_cancel, new DialogInterface.OnClickListener() {

    public void onClick(DialogInterface dialog, int whichButton) {
        onOrderStartCancel(context);
    }
}).setPositiveButton(R.string.dialog_start_order, new DialogInterface.OnClickListener() {

    public void onClick(DialogInterface dialog, int whichButton) {
        onOrderStart(context, goodsTypeId, goodType);
    }
}).create();
dialog.setCanceledOnTouchOutside(true);
dialog.setCancelable(true);
dialog.show();
share|improve this question
so dont want to hide dialog ? – MAC Oct 4 '12 at 13:04
yes, the dialog must hide after button click. – user1582087 Oct 4 '12 at 13:07
see my answer below. – MAC Oct 4 '12 at 13:08
at least read the documentation of the methods you are using ... – njzk2 Oct 4 '12 at 13:11

2 Answers

use

dialog.setCancelable(false);
share|improve this answer

If you dont want to allow user to cancel dialog then

use

dialog.setCancelable(false);
                     ^^^^^

instead of

dialog.setCancelable(true);

also remove this dialog.setCanceledOnTouchOutside(true); <--- if not needed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.