diff options
author | satok <satok@google.com> | 2011-10-27 10:50:14 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-10-27 10:50:14 -0700 |
commit | e0122406bb1c512ee57f3a5a1503435a0779e1d8 (patch) | |
tree | 4d27a8903381892717723446db677fb03af3c748 /docs | |
parent | 6c60e9a3ba3555590d7e7bdaf3634c9daaf8b33b (diff) | |
parent | 182e4ae2f4bbfdd2272f6e425c6f3734b3f157bf (diff) | |
download | frameworks_base-e0122406bb1c512ee57f3a5a1503435a0779e1d8.zip frameworks_base-e0122406bb1c512ee57f3a5a1503435a0779e1d8.tar.gz frameworks_base-e0122406bb1c512ee57f3a5a1503435a0779e1d8.tar.bz2 |
Merge "Add a path to HelloSpellChecker sample application for SDK build" into ics-mr0
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> |