Home | History | Annotate | Download | only in articles

Lines Matching full:will

9 aspects of the engine that will be important to your TTS-enabled application. We
10 will then show how to make your Android application talk and how to configure
37 <p>A successful check will be marked by a <code>CHECK_VOICE_DATA_PASS</code>
43 accomplished by firing off the ACTION_INSTALL_TTS_DATA intent, which will take
44 the user to Android Market, and will let her/him initiate the download.
45 Installation of the data will happen automatically once the download completes.
91 <p>will return TextToSpeech.LANG_COUNTRY_AVAILABLE to indicate that the language
98 <p>will return <code>TextToSpeech.LANG_AVAILABLE</code>. In the first example,
105 <code>TextToSpeech</code> instance, which will return
110 French language will produce some pretty <i>interesting </i>results, but it will
131 manage its own queue in order to control which utterance will interrupt the
135 queue. The second utterance is queued and will be played after
158 <p>Note that <code>speak()</code> calls are asynchronous, so they will return
163 synthesizing (remember, we're trying to wake up the user). We will again use an
191 there is text your application will speak often; you could avoid the synthesis
218 <code>wakeUpText</code> will result in the playback of
219 <code>destFileName</code>. If the file is missing, then speak will behave as if
220 the audio file wasn't there, and will synthesize and play the given string. But