From eb150cedbc74e6c6585545b32a1d398796803caf Mon Sep 17 00:00:00 2001 From: Anugrah Rochmat Date: Thu, 27 Dec 2018 01:11:35 +0700 Subject: [PATCH] Add content into Activity Section (#27629) --- guide/english/android-development/core-components/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/android-development/core-components/index.md b/guide/english/android-development/core-components/index.md index aae80bbf98..840d0a5699 100644 --- a/guide/english/android-development/core-components/index.md +++ b/guide/english/android-development/core-components/index.md @@ -16,7 +16,7 @@ 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. - +- Providing a way for apps to implement user flows between each other, and for the system to coordinate these flows. (The most classic example here being share.) #### [Activity Lifecycle](https://developer.android.com/guide/components/activities/activity-lifecycle) ![Activity Lifecycle](https://developer.android.com/images/activity_lifecycle.png)