Вопрос

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

Это было полезно?

Решение

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.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top