Skip to content

Instantly share code, notes, and snippets.

@Slowhand0309
Created September 24, 2019 15:46
Show Gist options
  • Save Slowhand0309/bf03f43fe816c950b6d322b5a2496436 to your computer and use it in GitHub Desktop.
Save Slowhand0309/bf03f43fe816c950b6d322b5a2496436 to your computer and use it in GitHub Desktop.
[Backボタン制御] #Android
// legacy
public boolean onKeyDown(int keyCode, KeyEvent event) {
  if (keyCode == KeyEvent.KEYCODE_BACK){
    // do something...
  } else {
    return super.onKeyDown(keyCode, event);
  }
}
// use onBackPressedDispatcher
activity.onBackPressedDispatcher.addCallback(this@MainFragment) {
// do something...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment