Reputation: 23
How can I prevend a dialog from dismissing when I click somewhere outside the dialog?
Upvotes: 0
Views: 37
Reputation: 1188
use dialog.setCanceledOnTouchOutside(false);
for more details https://developer.android.com/reference/android/app/Dialog.html#setCanceledOnTouchOutside(boolean)
Upvotes: 1