1

In android, how can you override the onbackpressed event for Dialog boxes?

Currently if I press back, it will dismiss it...

Thanks.

omega
  • 40,311
  • 81
  • 251
  • 474

1 Answers1

2

You can just set

mDialog.setCancellable(false);

Where mDialog is the dialog object.