Which activity lifecycle method gets called whenever a dialog opens on screen?

Asked 8 years ago 754 views

1 Answer


0
Whenever a dialog opens on your application the activity calls the onPause() method. This ensures that user is not doing anything with previous activity.

Write Your Answer