Android: Is onResume always called after onCreate?
onResume()
will never be called before onCreate()
.
Read more about it in the Activity Lifecycle
onResume()
will always be called when the activity goes into foreground, but it will never be executed before onCreate()
.