Skip to content

Instantly share code, notes, and snippets.

@mnisbet13
Created February 18, 2016 20:32
Show Gist options
  • Save mnisbet13/89980bf9846dd82b34e0 to your computer and use it in GitHub Desktop.
Save mnisbet13/89980bf9846dd82b34e0 to your computer and use it in GitHub Desktop.
if (getDialog() != null) {
getDialog().setOnKeyListener(new OnKeyListener() {
@Override
public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK && event.getAction() == KeyEvent.ACTION_UP) {
onBackPressed();
}
return true;
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment