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/aidl.jd | 2 | ||||
| -rw-r--r-- | docs/html/guide/components/bound-services.jd | 4 |
3 files changed, 5 insertions, 5 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/aidl.jd b/docs/html/guide/components/aidl.jd index 805b7ec..0be6e6f 100644 --- a/docs/html/guide/components/aidl.jd +++ b/docs/html/guide/components/aidl.jd @@ -208,7 +208,7 @@ YourInterface.Stub}) and declares all the methods from the {@code .aidl} file.</ defines a few helper methods, most notably {@code asInterface()}, which takes an {@link android.os.IBinder} (usually the one passed to a client's {@link android.content.ServiceConnection#onServiceConnected onServiceConnected()} callback method) and -returns an instance of the stub interface. See the section <a href="#calling">Calling an IPC +returns an instance of the stub interface. See the section <a href="#Calling">Calling an IPC Method</a> for more details on how to make this cast.</p> <p>To implement the interface generated from the {@code .aidl}, extend the generated {@link 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> |
