In android, how can you override the onbackpressed event for Dialog boxes?
Currently if I press back, it will dismiss it...
Thanks.
You can just set
mDialog.setCancellable(false);
Where mDialog is the dialog object.