Android Developer Question:

Explain me how does the activity respond when the user rotates the screen?

Android Developer Interview Question
Android Developer Interview Question

Answer:

When the screen is rotated, the current instance of activity is destroyed a new instance of the Activity is created in the new orientation. The onRestart() method is invoked first when a screen is rotated. The other lifecycle methods get invoked in the similar flow as they were when the activity was first created.


Previous QuestionNext Question
Explain me scenario in which only onDestroy is called for an activity without onPause() and onStop()?What are content providers?