Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Override dialog onBackPressed()?

Tags:

android

dialog

How would I override a Dialog's onBackPressed to close the dialog as well as calling finish() on the Activity it is located in?

like image 949
Skizit Avatar asked Jun 01 '11 17:06

Skizit


1 Answers

You can use setOnCancelListener:

dialog.setOnCancelListener(new DialogInterface.OnCancelListener() {     @Override     public void onCancel(DialogInterface dialog)     {          MyActivity.this.finish();     } }); 

You need to finish only your activity. Dialog will be dismissed automatically.

like image 99
inazaruk Avatar answered Oct 01 '22 20:10

inazaruk