When we call activity.finish() will the next android life cycle method be executed?
activity.finish()
1) Lets say user clicks on a button onUserInteraction()
onUserInteraction()
When activity.finish() is called following lifecycle methods are called for that activity
onStop() onDestroy()
Activity instance will be destroyed