Skip to content

Lifecycle

qiibeta edited this page Apr 20, 2020 · 4 revisions

Lifecycle

Lifecycle method

Fragment lifecycle Scene lifecycle
onAttach() onAttach() deprecated
onCreate() onCreate() deprecated
onCreateView() onCreateView()
onViewCreated() onViewCreated()
onActivityCreated() onActivityCreated()
onStart() onStart()
onResume() onResume()
onPause() onPause()
onStop() onStop()
onDestroyView() onDestroyView()
onDestroy() onDestroy() deprecated
onDetach() onDetach() deprecated
onSaveInstanceState() onSaveInstanceState()
onViewStateRestored() onViewStateRestored()
Fragment lifecycle GroupScene lifecycle Description
onPostActivityCreated() all Children Scenes finish onActivityCreated() onPostActivityCreated()
onPostStart() all Children Scenes finish onStart() onPostStart()
onPostResume() all Children Scenes finish onResume() onPostResume()

Activity and Scene

Navigation

GroupScene

Lifecycle listener