I need to know if there is ever an instance when onResume
will be called before onCreate
has been called at least once. Thanks.
Edit: Judging b
Note: This answer only an additional one to complement the accepted answers.
As previous answers say:
onResume() will never be called before onCreate().
Read more about it in the Activity Lifecycle and Starting an Activity.
Below the complete image of Activity lifecycle including Fragment Lifecycle from android-lifecycle: