What activity state is triggered when another action is launched in the same application, and then the return button is pressed to return to it?
Which lifecylce method is called during the transition to the previous action?
onPause() is called in Activity A when Activity B starts. After the "Back" button is called in Activity B , onResume() is called in Activity A.
onPause()
onResume()
Which lifecylce method is invoked during the transition to a previous activity?
According to docs : onPause() , onStop() and possibly onDestroy() . In addition to the lifecycle documentation, you can read the documents in Tasks and Back Stack .
onStop()
onDestroy()