HomeSort by relevance Sort by last modified time
    Searched defs:TextToSpeech (Results 1 - 15 of 15) sorted by null

  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskBackService.java 27 import android.speech.tts.TextToSpeech;
28 import android.speech.tts.TextToSpeech.OnInitListener;
52 private TextToSpeech mTts;
60 mTts = new TextToSpeech(getApplicationContext(), this);
139 mTts.speak(utterance.toString(), TextToSpeech.QUEUE_FLUSH, null);
175 if (status == TextToSpeech.SUCCESS) {
  /frameworks/base/core/java/android/speech/tts/
TextToSpeech.java 51 * <p>A TextToSpeech instance can only be used to synthesize text once it has completed its
52 * initialization. Implement the {@link TextToSpeech.OnInitListener} to be
54 * When you are done using the TextToSpeech instance, call the {@link #shutdown()} method
55 * to release the native resources used by the TextToSpeech engine.
58 public class TextToSpeech {
60 private static final String TAG = "TextToSpeech";
119 * Broadcast Action: The TextToSpeech synthesizer has completed processing
133 * TextToSpeech engine initialization.
137 * Called to signal the completion of the TextToSpeech engine initialization.
139 * @param status {@link TextToSpeech#SUCCESS} or {@link TextToSpeech#ERROR}
    [all...]
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceDialerActivity.java 38 import android.speech.tts.TextToSpeech;
169 private TextToSpeech mTts;
309 mTtsParams.put(TextToSpeech.Engine.KEY_PARAM_UTTERANCE_ID,
312 TextToSpeech.QUEUE_FLUSH,
323 class TtsInitListener implements TextToSpeech.OnInitListener {
325 // status can be either TextToSpeech.SUCCESS or TextToSpeech.ERROR.
327 if (status != TextToSpeech.SUCCESS) {
329 Log.e(TAG, "Could not initialize TextToSpeech.");
369 implements TextToSpeech.OnUtteranceCompletedListener
    [all...]
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/8/
android.jar 

Completed in 64 milliseconds