1、声明一个TTS
private TextToSpeech TTsSpeak;
2、初始化并创建一个TTS对象
OnInitListener tts = null;
tts = new TextToSpeech.OnInitListener() {
public void onInit(int arg0) {
// TODO Auto-generated method stub
}
};
TTsSpeak = new TextToSpeech(this, tts);
3、调用TTS读(其中Input为字符串,及执行之后会输出Input字符串)
TTsSpeak.speak(Input, TextToSpeech.QUEUE_ADD, null);