Hi,
I want to hide/disable the close button symbol in Dialogs.InputDialogBuilder or if i can get close event of close button it would also be helpful.
Hi,
In order to hide close button (x) you can use the following code:
inputDialog.getWindow().setCloseable(false);
In order to subscribe to close event you can use withCloseListener()
method of InputDialogBuilder
.
Regards,
Gleb