Exit android app on back pressed

后端 未结 12 2106
逝去的感伤
逝去的感伤 2021-01-30 10:57

I am building an Android App. How to exit an Android App when back is pressed. Android version is 2.3.3 and above. The Android App goes to previous activity which i don\'t want.

12条回答
  •  时光取名叫无心
    2021-01-30 11:34

    Kotlin:

     override fun onBackPressed() {
            val exitIntent = Intent(Intent.ACTION_MAIN)
            exitIntent.addCategory(Intent.CATEGORY_HOME)
            exitIntent.flags = Intent.FLAG_ACTIVITY_CLEAR_TOP
            startActivity(exitIntent)
        }
    

    Other codes have problems, some does not work and some needs API classification.

提交回复
热议问题