From 77d7a725be94c6ced155c2a3248680f22cda0cee Mon Sep 17 00:00:00 2001 From: Anugrah Rochmat Date: Thu, 27 Dec 2018 01:01:50 +0700 Subject: [PATCH] Add content into Activity Section (#27627) --- guide/english/android-development/core-components/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guide/english/android-development/core-components/index.md b/guide/english/android-development/core-components/index.md index 8f9d024afc..aae80bbf98 100644 --- a/guide/english/android-development/core-components/index.md +++ b/guide/english/android-development/core-components/index.md @@ -14,6 +14,8 @@ An _activity_ is a component that has a user interface and represents a single s An activity facilitates the following key interactions between system and app: - Keeping track of what the user currently cares about (what is on screen) to ensure that the system keeps running the process that is hosting the activity. +- Knowing that previously used processes contain things the user may return to (stopped activities), and thus more highly prioritize keeping those processes around. +- Helping the app handle having its process killed so the user can return to activities with their previous state restored. #### [Activity Lifecycle](https://developer.android.com/guide/components/activities/activity-lifecycle)