Android中activity的生命周期

下面是activity是生命周期图谱


Android中activity的生命周期_第1张图片
图片发自App

onCreate() onStart() onResume() onPause() onStop() onDestroy() onRestart()

一般activity开始启动时,先调用了onCreate()  onStart() onResume(),接下来,activity就进入了运行的阶段。当其他activity覆盖在了当前activity前时,当前activity就会进入onPause()状态。

你可能感兴趣的:(Android中activity的生命周期)