0

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()
}
Logic Gupta
  • 1
  • 1
  • 1
  • Does this answer your question? [android - How to close an activity on button click?](https://stackoverflow.com/questions/21473509/android-how-to-close-an-activity-on-button-click) – Abhishek Dutt Jun 21 '21 at 05:21

1 Answers1

0

try this

@Override
public void onBackPressed() {
    super.onBackPressed();
}
Elango
  • 406
  • 3
  • 11