summaryrefslogtreecommitdiffstats
path: root/docs/html/guide/components/bound-services.jd
diff options
context:
space:
mode:
authorScott Main <smain@google.com>2012-06-25 10:02:13 -0700
committerScott Main <smain@google.com>2012-06-25 10:02:13 -0700
commite40c4636d970c50f7719e7d5067963be93c25750 (patch)
tree27f851b1d370ab563ff51267b94a10943f3c6963 /docs/html/guide/components/bound-services.jd
parentdbbfa702a09f6d2d36dee1b552442d04a4673f89 (diff)
downloadframeworks_base-e40c4636d970c50f7719e7d5067963be93c25750.zip
frameworks_base-e40c4636d970c50f7719e7d5067963be93c25750.tar.gz
frameworks_base-e40c4636d970c50f7719e7d5067963be93c25750.tar.bz2
docs: move AIDL doc under Services in api guides.
Change-Id: I525de97958e2093af15cce2b007ec022cb315a71
Diffstat (limited to 'docs/html/guide/components/bound-services.jd')
-rw-r--r--docs/html/guide/components/bound-services.jd4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/guide/components/bound-services.jd b/docs/html/guide/components/bound-services.jd
index b6a2512..43e6e5e 100644
--- a/docs/html/guide/components/bound-services.jd
+++ b/docs/html/guide/components/bound-services.jd
@@ -170,7 +170,7 @@ can then extend within your service.</p>
create a bound service, because it may require multithreading capabilities and
can result in a more complicated implementation. As such, AIDL is not suitable for most applications
and this document does not discuss how to use it for your service. If you're certain that you need
-to use AIDL directly, see the <a href="{@docRoot}tools/aidl.html">AIDL</a>
+to use AIDL directly, see the <a href="{@docRoot}guide/components/aidl.html">AIDL</a>
document.</p>
@@ -341,7 +341,7 @@ service, which must then handle multi-threading.</p>
<p>For most applications, the service doesn't need to perform multi-threading, so using a {@link
android.os.Messenger} allows the service to handle one call at a time. If it's important
that your service be multi-threaded, then you should use <a
-href="{@docRoot}tools/aidl.html">AIDL</a> to define your interface.</p>
+href="{@docRoot}guide/components/aidl.html">AIDL</a> to define your interface.</p>
</div>
</div>