I see this documentation under developer.android.com
, describing the Activity lifecycle. However, I am trying to match the description up with the actual android code, at cs.android.com
, where the activity life cycle is actually defined.
Looking there in code search at Activity.java, I see, for example, the onCreate
method defined. But I have not been able to find where this is actually called as part of the lifecycle. Maybe it is listed when I search for its references, but there are thousands of references, including a lot of overrides, and I have not found where it is called defining its place in the activity life cycle.
Where might I find that?