有人帮我在文本到语音中提供提示吗?
我的目标是提示设备正在读取哪个单词。
文字转语音我的代码如下:-
TextToSpeech tts = new TextToSpeech(this,this);
if (txtText.getText().toString().length() == 0)
tts.speak("You haven't typed text", TextToSpeech.QUEUE_FLUSH, null);
else
tts.speak(txtText.getText().toString(), TextToSpeech.QUEUE_FLUSH,null);
谢谢。