Phil
Phil

Reputation: 23

Prevend dialog from dismiss when clicking somewhere

How can I prevend a dialog from dismissing when I click somewhere outside the dialog?

Upvotes: 0

Views: 37

Answers (1)

Sreejith B Naick
Sreejith B Naick

Reputation: 1188

use dialog.setCanceledOnTouchOutside(false); for more details https://developer.android.com/reference/android/app/Dialog.html#setCanceledOnTouchOutside(boolean)

Upvotes: 1

Related Questions