Android:关于 TTS 使用的问题
我正在使用 TTS 引擎,并且我想禁用按钮,直到 tts 消息完成,因此用户无法在屏幕上选择选项,直到 tts 消息被完全收听。
我一直在尝试使用
while (tts.isSpeaking())
{
button.setclickable(false);
}
button.setclickable(true);
但它不起作用。
我想这是因为 tts.isSpeaking 没有按我的预期工作。
I'm using a TTS engine, and i want to disable the buttons until the tts message has finished, so the user can't select an option on the screen until the tts message has been listened completely.
I've been trying using
while (tts.isSpeaking())
{
button.setclickable(false);
}
button.setclickable(true);
but it's not working.
I guess that is because tts.isSpeaking doesn't work as i expected.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用此 TTS 检查话语概念,您可以在此处实施您的任务检查
http://developer .android.com/resources/articles/tts.html
http://developer.android.com/reference/android/speech/tts/TextToSpeech.html#setOnUtteranceCompletedListener%28android.speech.tts.TextToSpeech.OnUtteranceCompletedListener%29
check the Utterance concept with this TTS using this you can implement your task check here
http://developer.android.com/resources/articles/tts.html
http://developer.android.com/reference/android/speech/tts/TextToSpeech.html#setOnUtteranceCompletedListener%28android.speech.tts.TextToSpeech.OnUtteranceCompletedListener%29