Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e0122406 authored by satok's avatar satok Committed by Android (Google) Code Review
Browse files

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

parents 6c60e9a3 182e4ae2
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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 \
+4 −2
Original line number Diff line number Diff line
@@ -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>
+12 −2
Original line number Diff line number Diff line
@@ -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>.'
    }
  },
  {
+4 −2
Original line number Diff line number Diff line
@@ -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>