In Full Screen Activity Android, OnBack pressed activity is not getting closed. Can Anyone help provide the solution? I have used on back pressed. Still unable to close the activity.
override fun onBackPressed() {
finish()
}
In Full Screen Activity Android, OnBack pressed activity is not getting closed. Can Anyone help provide the solution? I have used on back pressed. Still unable to close the activity.
override fun onBackPressed() {
finish()
}
try this
@Override
public void onBackPressed() {
super.onBackPressed();
}