When does onResume() method call?

Asked 21-Jan-2018
Viewed 420 times

1 Answer


0

this method is the activity lifecycle method which is called when the activity restarts.

onResume() method is called after the onPause() method. Suppose you move your application in the background for any reason, your activity calls the onPause() method now your activity is in the background with no user interaction, when you move your application in the foreground or when a user starts the interaction again onResume() method is called and you activity starts working again.