How does Activity.finish() work in Android?

Does it exits immediately or completes
the function from which it was called
?

The method that called finish() will run to completion. The finish() operation will not even begin until you return control to Android.

Leave a Comment