From 4fd13fda636a3a5ab247367da23ae1527a66d8aa Mon Sep 17 00:00:00 2001 From: Quddus Chong Date: Mon, 23 Apr 2012 17:29:57 -0700 Subject: docs: Fixed typos. Change-Id: I260ab8c5ea797e5bd8b9b2fcbd0d5dc6e5e8bc7c --- docs/html/training/basics/activity-lifecycle/starting.jd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/html') diff --git a/docs/html/training/basics/activity-lifecycle/starting.jd b/docs/html/training/basics/activity-lifecycle/starting.jd index d3266ae..1d328c7 100644 --- a/docs/html/training/basics/activity-lifecycle/starting.jd +++ b/docs/html/training/basics/activity-lifecycle/starting.jd @@ -79,9 +79,9 @@ ensures your app behaves well in several ways, including that it:

while using your app.
  • Does not consume valuable system resources when the user is not actively using it.
  • -
  • Does not loose the user's progress if they leave your app and return to it at a +
  • Does not lose the user's progress if they leave your app and return to it at a later time.
  • -
  • Does not crash of loose the user's progress when the screen rotates between +
  • Does not crash or lose the user's progress when the screen rotates between landscape and portrait orientation.
  • @@ -257,7 +257,7 @@ activity until they switch to a different activity.

    Destroy the Activity

    While the activity's first lifecycle callback is {@link android.app.Activity#onCreate -onCreate()}, it's very last callback is {@link android.app.Activity#onDestroy}. The system calls +onCreate()}, its very last callback is {@link android.app.Activity#onDestroy}. The system calls this method on your activity as the final signal that your activity instance is being completely removed from the system memory.

    -- cgit v1.1