From 7aee61f5a96e94e158bf5ad3d8e192c4d4f7eff6 Mon Sep 17 00:00:00 2001 From: Scott Main Date: Tue, 8 Feb 2011 11:25:01 -0800 Subject: docs: fix links to revised fundamentals documents Change-Id: Ie2a660cce1d00f924c9fde5c6a00776307e5e1c7 --- core/java/android/app/Service.java | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'core/java/android/app/Service.java') diff --git a/core/java/android/app/Service.java b/core/java/android/app/Service.java index 024c5f3..05b9781 100644 --- a/core/java/android/app/Service.java +++ b/core/java/android/app/Service.java @@ -46,13 +46,14 @@ import java.io.PrintWriter; * to do any CPU intensive (such as MP3 playback) or blocking (such as * networking) operations, it should spawn its own thread in which to do that * work. More information on this can be found in - * Application Fundamentals: - * Processes and Threads. The {@link IntentService} class is available + * Processes and + * Threads. The {@link IntentService} class is available * as a standard implementation of Service that has its own thread where it * schedules its work to be done.

- * - *

The Service class is an important part of an - * application's overall lifecycle.

+ * + *

You can find a detailed discussion about how to create services in the + * Services + * document.

* *

Topics covered here: *

    @@ -453,9 +454,9 @@ public abstract class Service extends ContextWrapper implements ComponentCallbac * *

    Note that unlike other application components, calls on to the * IBinder interface returned here may not happen on the main thread - * of the process. More information about this can be found - * in Application Fundamentals: - * Processes and Threads.

    + * of the process. More information about the main thread can be found in + * Processes and + * Threads.

    * * @param intent The Intent that was used to bind to this service, * as given to {@link android.content.Context#bindService -- cgit v1.1