FileDocCategorySizeDatePackage
TextToSpeechService.javaAPI DocAndroid 5.1 API1522Sat Mar 14 14:09:38 GMT 2015android.speech.tts

TextToSpeechService.java

package android.speech.tts;
public abstract class TextToSpeechService
  extends android.app.Service
{
public  TextToSpeechService() { throw new RuntimeException("Stub!"); }
public  void onCreate() { throw new RuntimeException("Stub!"); }
public  void onDestroy() { throw new RuntimeException("Stub!"); }
protected abstract  int onIsLanguageAvailable(java.lang.String lang, java.lang.String country, java.lang.String variant);
protected abstract  java.lang.String[] onGetLanguage();
protected abstract  int onLoadLanguage(java.lang.String lang, java.lang.String country, java.lang.String variant);
protected abstract  void onStop();
protected abstract  void onSynthesizeText(android.speech.tts.SynthesisRequest request, android.speech.tts.SynthesisCallback callback);
protected  java.util.Set<java.lang.String> onGetFeaturesForLanguage(java.lang.String lang, java.lang.String country, java.lang.String variant) { throw new RuntimeException("Stub!"); }
public  java.util.List<android.speech.tts.Voice> onGetVoices() { throw new RuntimeException("Stub!"); }
public  java.lang.String onGetDefaultVoiceNameFor(java.lang.String lang, java.lang.String country, java.lang.String variant) { throw new RuntimeException("Stub!"); }
public  int onLoadVoice(java.lang.String voiceName) { throw new RuntimeException("Stub!"); }
public  int onIsValidVoiceName(java.lang.String voiceName) { throw new RuntimeException("Stub!"); }
public  android.os.IBinder onBind(android.content.Intent intent) { throw new RuntimeException("Stub!"); }
}