6

What is called first when activity is restored? onRestoreInstanceState or onActivityResult?

double-beep
  • 5,031
  • 17
  • 33
  • 41
Sebastian Nowak
  • 5,607
  • 8
  • 67
  • 107

1 Answers1

15

From my experience, flow must be

onCreate
onStart
onRestoreInstanceState
onActivityResult
onResume

So, onActivityResult is called AFTER the onRestoreInstanceState.

Here and here are sample code, which make clear about your doubt.

Pankaj Kumar
  • 81,967
  • 29
  • 167
  • 186