Android生命周期

来源:互联网 发布:frontpage下载qc软件 编辑:程序博客网 时间:2024/06/04 23:25
Activity的生命周期1.创建到销毁的生命周期onCreate()-->onStart()-->onResume()-->onPause()-->onStop()-->onDestroy();2.从启动到后台,再到前台的生命周期onCreate()-->onStart()-->onResume()-->onPause()-->onStop()-->onRestart()-->onStart()-->onResume()。后台对应的状态就是停止状态(Stopped),Activity被完全遮挡,但保留所有的状态和成员信息。3.从启动到失去焦点,再到获取焦点的生命周期onCreate()-->onStart()-->onResume()-->onPause()-->onResume()
0 0