am e0122406: Merge "Add a path to HelloSpellChecker sample application for SDK build" into ics-mr0

* commit 'e0122406bb1c512ee57f3a5a1503435a0779e1d8':
  Add a path to HelloSpellChecker sample application for SDK build
This commit is contained in:
satok
2011-10-27 17:51:51 +00:00
committed by Android Git Automerger
4 changed files with 23 additions and 7 deletions

View File

@@ -435,7 +435,9 @@ web_docs_sample_code_flags := \
-samplecode $(sample_dir)/NotePad \
resources/samples/NotePad "Note Pad" \
-samplecode $(sample_dir)/SpellChecker/SampleSpellCheckerService \
resources/samples/SpellChecker/SampleSpellCheckerService "Spell Checker" \
resources/samples/SpellChecker/SampleSpellCheckerService "Spell Checker service" \
-samplecode $(sample_dir)/SpellChecker/HelloSpellChecker \
resources/samples/SpellChecker/HelloSpellCheckerService "Spell Checker client" \
-samplecode $(sample_dir)/SampleSyncAdapter \
resources/samples/SampleSyncAdapter "Sample Sync Adapter" \
-samplecode $(sample_dir)/RandomMusicPlayer \

View File

@@ -31,8 +31,10 @@ checker. For example:</p>
&lt;/service>
</pre>
<p>For example code, see the <a
<p>For example code, see the sample <a
href="{@docRoot}resources/samples/SpellChecker/SampleSpellCheckerService/index.html">Spell
Checker</a> sample app.</p>
Checker service</a> app, and the sample <a
href="{@docRoot}resources/samples/SpellChecker/HelloSpellChecker/index.html">Spell
Checker client</a> app.</p>
</BODY>
</HTML>

View File

@@ -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>.'
}
},
{

View File

@@ -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>