LoginSignup
4
7

More than 5 years have passed since last update.

バックキーを押した時アプリを終了させる

Posted at

ログアウト処理を実行したあとにログイン画面に遷移した際にバックキータップでアプリを終了させたかったので今回実装した。

実装方法

バックキータップでアプリを終了させたい画面の Activity で下記のメソッドをオーバーライドするだけ


override fun onBackPressed() {
     // バックキーの無効化
     moveTaskToBack (true)
}

簡単。

4
7
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
4
7