Activities in the system are managed as an activity stack(activity栈?). When a new activity is started, it is placed on the top of the stack and becomes the running activity(当一个activity启动时,它覆盖在栈的顶部,成为正在运行的activity) -- the previous activity always remains below it in the stack, and will not come to the foreground again until the new activity exits.
An activity has essentially four states(一个activity本质上有四种状态):
The following diagram shows the important state paths of an Activity. The square rectangles represent callback methods you can implement to perform operations when the Activity moves between states. The colored ovals are major states the Activity can be in.
There are three key loops you may be interested in monitoring within your activity:
android.app.Activity.onCreate
through to a single final call to android.app.Activity.onDestroy
. An activity will do all setup of "global" state in onCreate(), and release all remaining resources in onDestroy(). For example, if it has a thread running in the background to download data from the network, it may create that thread in onCreate() and then stop the thread in onDestroy().android.app.Activity.onStart
until a corresponding call to android.app.Activity.onStop
. During this time the user can see the activity on-screen, though it may not be in the foreground and interacting with the user. Between these two methods you can maintain resources that are needed to show the activity to the user. For example, you can register a android.content.BroadcastReceiver
in onStart() to monitor for changes that impact your UI, and unregister it in onStop() when the user no longer sees what you are displaying. The onStart() and onStop() methods can be called multiple times, as the activity becomes visible and hidden to the user.android.app.Activity.onResume
until a corresponding call to android.app.Activity.onPause
. During this time the activity is in front of all other activities and interacting with the user. An activity can frequently go between the resumed and paused states -- for example when the device goes to sleep, when an activity result is delivered, when a new intent is delivered -- so the code in these methods should be fairly lightweight.The entire lifecycle of an activity is defined by the following Activity methods. All of these are hooks that you can override to do appropriate work when the activity changes state. All activities will implement android.app.Activity.onCreate
to do their initial setup; many will also implement android.app.Activity.onPause
to commit changes to data and otherwise prepare to stop interacting with the user. You should always call up to your superclass when implementing these methods.
public class Activity extends ApplicationContext { protected void onCreate(Bundle savedInstanceState); protected void onStart(); protected void onRestart(); protected void onResume(); protected void onPause(); protected void onStop(); protected void onDestroy(); }
从用户的角度来说,活动的状态只有3种:可见(执行与暂停)、取得焦点(执行)、不可见(停止与移除)。
在活动整个生命周期中共有7个方法会在活动状态转换时调用: