-
Notifications
You must be signed in to change notification settings - Fork 205
Lifecycle
qiibeta edited this page Apr 20, 2020
·
4 revisions
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() |
- Home
- Background
- Installation
- Basic
- NavigationScene
- GroupScene
- Navigation Animation
- Dialog
- Router
- Style
- State Save
- Architecture-Patterns
- Activity Compatibility
- Migrate Guide
- Benchmark (compare to Activity/Fragment)