Reputation: 445
My problem is when dialog box is showing at that time may i click outside the dialog box, at that time my dialog box is dismissed automatically. What can i do. Please send answers with code. Thanks.
Upvotes: 0
Views: 1630
Reputation: 558
Hi this line is used to dismiss dialog Box.
dialog.setCanceledOnTouchOutside(true);
This line is is used for does not dismiss dialog Box.
dialog.setCanceledOnTouchOutside(false);
Upvotes: 5