diff options
Diffstat (limited to 'docs/html/guide/components')
-rw-r--r-- | docs/html/guide/components/activities.jd | 4 | ||||
-rw-r--r-- | docs/html/guide/components/bound-services.jd | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/html/guide/components/activities.jd b/docs/html/guide/components/activities.jd index 36f651f..2897804 100644 --- a/docs/html/guide/components/activities.jd +++ b/docs/html/guide/components/activities.jd @@ -691,7 +691,7 @@ restored, by default).</p> android.app.Activity#onSaveInstanceState onSaveInstanceState()} helps save the state of the UI, if you override the method in order to save additional state information, you should always call the superclass implementation of {@link android.app.Activity#onSaveInstanceState onSaveInstanceState()} -before doing any work. Likewise, you should also call the supercall implementation of {@link +before doing any work. Likewise, you should also call the superclass implementation of {@link android.app.Activity#onRestoreInstanceState onRestoreInstanceState()} if you override it, so the default implementation can restore view states.</p> @@ -773,4 +773,4 @@ android.app.Activity#onStop onStop()}.</p> enables user multitasking, continue with the <b><a href="{@docRoot}guide/components/tasks-and-back-stack.html">Tasks and Back Stack</a></b> document.</p> --->
\ No newline at end of file +--> diff --git a/docs/html/guide/components/bound-services.jd b/docs/html/guide/components/bound-services.jd index 8d2bba5..653c7a0 100644 --- a/docs/html/guide/components/bound-services.jd +++ b/docs/html/guide/components/bound-services.jd @@ -578,7 +578,7 @@ private ServiceConnection mConnection = new ServiceConnection() { </pre> <p>With this {@link android.content.ServiceConnection}, the client can bind to a service by passing -this it to {@link android.content.Context#bindService bindService()}. For example:</p> +it to {@link android.content.Context#bindService bindService()}. For example:</p> <pre> Intent intent = new Intent(this, LocalService.class); @@ -667,7 +667,7 @@ Below, figure 1 illustrates the logic for this kind of lifecycle.</p> and also allows binding.</p> -<p>For more information about the lifecycle of an started service, see the <a +<p>For more information about the lifecycle of a started service, see the <a href="{@docRoot}guide/components/services.html#Lifecycle">Services</a> document.</p> |