I need to know if there is ever an instance when onResume will be called before onCreate has been called at least once. Thanks.
onResume
onCreate
Edit: Judging b
onResume() will always be called when the activity goes into foreground, but it will never be executed before onCreate().
onResume()
onCreate()