Android:关于 TTS 使用的问题

发布于 2024-12-06 20:18:55 字数 259 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文