State of Activity while in onActivityResult question
In my app I get the following workflow:
onCreate
onStart
onRestoreInstanceState
onActivityResult
onResume
So, yes onActivityResult
is called AFTER the onRestoreInstanceState
, so you can count on the state has been fully restored (unless you do smth in onResume
).