Android: Is onResume always called after onCreate?
android
Solution
`onResume()` will never be called before `onCreate()`.
Read more about it in the Activity Lifecycle
Problem
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 by the activity life cycle, it doesn't seem so. But I want to double check.