What happens to the activity lifecycle whenever a user is browsing your application and suddenly a call comes?

Asked 7 years ago
Viewed 453 times

1

What happens to the activity lifecycle whenever a user is browsing your application and suddenly a call comes?


1 Answer


0

This is the condition when the user is navigating to the other activity since a call arrives. In this case, onStop() method will be called. once the user stops the call and returns back to the application onResume() will be called.
answered 7 years ago by Prateek sharma

Your Answer