[android] Android Closing Activity Programmatically

What is the equivalent operation within an activity to navigating away from the screen. Like when you press the back button, the activity goes out of view. How can this be called from inside an activity so that it closes itself.

This question is related to android android-activity

The answer is


You Can use just finish(); everywhere after Activity Start for clear that Activity from Stack.


you can use finishAffinity(); to close all the activity..


finish() method is used to finish the activity and remove it from back stack. You can call it in any method in activity. But make sure you close all the Database connections, all reference variables null to prevent any memory leaks.


you can use this.finish() if you want to close current activity.

this.finish()