summaryrefslogtreecommitdiffstats
path: root/docs/html
diff options
context:
space:
mode:
authorsatok <satok@google.com>2011-10-27 19:57:34 +0900
committersatok <satok@google.com>2011-10-28 02:27:53 +0900
commit182e4ae2f4bbfdd2272f6e425c6f3734b3f157bf (patch)
tree22f59836a99a6504b565b2881bcc5f5b0528b21f /docs/html
parent28e4f87f38cae799b494e160467d732e988bad89 (diff)
downloadframeworks_base-182e4ae2f4bbfdd2272f6e425c6f3734b3f157bf.zip
frameworks_base-182e4ae2f4bbfdd2272f6e425c6f3734b3f157bf.tar.gz
frameworks_base-182e4ae2f4bbfdd2272f6e425c6f3734b3f157bf.tar.bz2
Add a path to HelloSpellChecker sample application for SDK build
Change-Id: I77e334f8e2b50b8609b1729edb253254d6b7360b
Diffstat (limited to 'docs/html')
-rw-r--r--docs/html/resources/resources-data.js14
-rw-r--r--docs/html/sdk/android-4.0.jd6
2 files changed, 16 insertions, 4 deletions
diff --git a/docs/html/resources/resources-data.js b/docs/html/resources/resources-data.js
index 38357ef..164bd16 100644
--- a/docs/html/resources/resources-data.js
+++ b/docs/html/resources/resources-data.js
@@ -601,10 +601,20 @@ var ANDROID_RESOURCES = [
tags: ['sample', 'input', 'new'],
path: 'samples/SpellChecker/SampleSpellCheckerService/index.html',
title: {
- en: 'Spell Checker'
+ en: 'Spell Checker Service'
},
description: {
- en: 'An example spell checker service, using the <a href="'+toRoot+'reference/android/service/textservice/SpellCheckerService.html"><code>SpellCheckerservice</code></a>.'
+ en: 'An example spell checker service, using the <a href="'+toRoot+'reference/android/service/textservice/SpellCheckerService.html"><code>SpellCheckerService</code></a>.'
+ }
+ },
+ {
+ tags: ['sample', 'input', 'new'],
+ path: 'samples/SpellChecker/HelloSpellChecker/index.html',
+ title: {
+ en: 'Spell Checker Client'
+ },
+ description: {
+ en: 'An example spell checker client, using the <a href="'+toRoot+'reference/android/view/textservice/TextServicesManager.html"><code>TextServicesManager</code></a> and <a href="'+toRoot+'reference/android/view/textservice/SpellCheckerSession.html"><code>SpellCheckerSession</code></a>.'
}
},
{
diff --git a/docs/html/sdk/android-4.0.jd b/docs/html/sdk/android-4.0.jd
index b6381fc..0708dd3 100644
--- a/docs/html/sdk/android-4.0.jd
+++ b/docs/html/sdk/android-4.0.jd
@@ -957,8 +957,10 @@ android:name="android.service.textservice.SpellCheckerService" />} as the intent
include a {@code &lt;meta-data&gt;} element that declares configuration information for the spell
checker. </p>
-<p>See the <a href="{@docRoot}resources/samples/SpellChecker/SampleSpellCheckerService/index.html">
-Spell Checker</a> sample app for example code.</p>
+<p>See the sample <a href="{@docRoot}resources/samples/SpellChecker/SampleSpellCheckerService/index.html">
+Spell Checker Service</a> app and
+sample <a href="{@docRoot}resources/samples/SpellChecker/HelloSpellChecker/index.html">
+Spell Checker Client</a> app for example code.</p>