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

Asked 8 years ago 719 views

1

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

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