diff options
author | satok <satok@google.com> | 2011-10-27 17:55:52 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2011-10-27 17:55:52 +0000 |
commit | 98af0a8178e97ee892d42bcdf155b9d3d3a46adb (patch) | |
tree | 9686714ae8ddebdc3360c59d0ddc861059279a5d /docs | |
parent | 7359d4fbb4cead3bad7c6c467f8533632f46de54 (diff) | |
parent | c04e2d5f1678b3251edbcc1297015b49b36086a7 (diff) | |
download | frameworks_base-98af0a8178e97ee892d42bcdf155b9d3d3a46adb.zip frameworks_base-98af0a8178e97ee892d42bcdf155b9d3d3a46adb.tar.gz frameworks_base-98af0a8178e97ee892d42bcdf155b9d3d3a46adb.tar.bz2 |
am c04e2d5f: am e0122406: Merge "Add a path to HelloSpellChecker sample application for SDK build" into ics-mr0
* commit 'c04e2d5f1678b3251edbcc1297015b49b36086a7':
Add a path to HelloSpellChecker sample application for SDK build
Diffstat (limited to 'docs')
-rw-r--r-- | docs/html/resources/resources-data.js | 14 | ||||
-rw-r--r-- | docs/html/sdk/android-4.0.jd | 6 |
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 <meta-data>} 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> |