0
0

More than 3 years have passed since last update.

標準の戻るボタンが押されたときにandroidのホーム画面に遷移

Posted at

標準の戻るボタンが押されたときにandroidのホーム画面に遷移

サンプルコード

back_to_home
    override fun onKeyDown(keyCode: Int, event: KeyEvent?): Boolean {
        return if (keyCode == KeyEvent.KEYCODE_BACK) {
            val homeIntent = Intent(Intent.ACTION_MAIN)
            homeIntent.addCategory(CATEGORY_HOME)
            homeIntent.flags = Intent.FLAG_ACTIVITY_NEW_TASK
            this@自分のクラスの名前.startActivity(homeIntent)
            super.onKeyDown(keyCode, event)
        } else {
            super.onKeyDown(keyCode, event)
        }
    }

この関数を使いたいクラスに入れることで、戻るボタンが押された時の動作を変えることができます。
自分のクラスの名前のところを変更して使用してください

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