Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的用例就像“按下跳过按钮应该从 TTS 中清除当前项目并从下一个开始”。
有什么方法可以清除或刷新我已经添加到 TTS 的项目。
请帮帮我。
提前致谢。
只需调用 tts.stop() 队列就会被刷新
一旦你有一个有效的 TTS 引擎,创建如下:
TextToSpeech tts = new TextToSpeech(context, onInitListener);
如果你这样做
tts.speak("sentence", TextToSpeech.QUEUE_FLUSH, null);
这将刷新 TTS 队列并sentence立即说。
sentence