0

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

Phil
  • 23
  • 5
  • Duplicate ???http://stackoverflow.com/questions/8384067/how-to-dismiss-the-dialog-with-click-on-outside-of-the-dialog?rq=1 – Suresh Atta Jul 06 '13 at 10:18

1 Answers1

1

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

Sreejith B Naick
  • 1,203
  • 7
  • 13