<Why onBackPressed() is not fired when touching Ba...
# stackoverflow
u
Why onBackPressed() is not fired when touching Back-Button / Android In order to reproduce my issue I made a tiny project. It has two activities. Here is the MainActivity.kt file: package me.soft.trybackbtnaction import android.content.Intent import androidx.appcompat.app.AppCompatActivity import android.os.Bundle import android.view.View class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) } fun...