[Android R source code] Activity startup process and life cycle source code analysis
1. Activity life cycle
activity lifecycle
oncreate()->onstart()->onResume()->onPause()->onStop()->onDestory()
onCreate():
When we click an activity, the system will call the oncreate() method of the activity. In this method, we will initialize the setContentLayout () method of the current layout.
onStart():
After the ...
Posted on Thu, 18 Nov 2021 06:00:02 -0500 by manitoon