android生命周期
2018-08-19 18:01:31 11 举报
Android生命周期是指一个Android应用程序从创建到销毁的整个过程。它包括以下几个阶段:1. 创建阶段:当应用程序首次被创建时,系统会调用onCreate()方法来初始化应用程序。2. 启动阶段:当应用程序开始运行时,系统会调用onStart()方法。3. 可见阶段:当应用程序出现在屏幕中时,系统会调用onResume()方法。4. 暂停阶段:当应用程序失去焦点或被其他窗口遮挡时,系统会调用onPause()方法。5. 停止阶段:当应用程序完全被其他窗口遮挡时,系统会调用onStop()方法。6. 销毁阶段:当应用程序被关闭或回收资源时,系统会调用onDestroy()方法。
作者其他创作
大纲/内容
Activity is running
Another activity comes in front of the activity
Other applications need memory
User navigates back to the activity
onResume()
The activity is no longer visible
onRestart()
onCreate()
onDestroy()
onStart()
The activity comes to the foreground
onStop()
Process is killed
onPause()
Activitystarts
Activity is shut down
0 条评论
下一页