How to prevent a dialog from closing when a button is clicked

后端 未结 18 2299
无人及你
无人及你 2020-11-21 23:59

I have a dialog with EditText for input. When I click the \"yes\" button on dialog, it will validate the input and then close the dialog. However, if the input

18条回答
  •  天命终不由人
    2020-11-22 00:21

    This is probably very late reply, but using setCancelable will do the trick.

    alertDial.setCancelable(false);
    

提交回复
热议问题