6
1

More than 1 year has passed since last update.

【Android】onBackPressedメソッドが非推奨になった

Last updated at Posted at 2022-10-17

onBackPressed()が非推奨になったので、代替案を記述。

戻る処理を実行したい

onBackPressedDispatcher.onBackPressed()

戻る処理を上書きしたい

onBackPressedDispatcher.addCallback(object : OnBackPressedCallback(true) {
	override fun handleOnBackPressed() {
		//戻りたい場合はfinish()を使用
    }
)
6
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
1