我们在Android开发者博客上的post之后实现了文本到语音.我们正在调用TextToSpeech.Engine.ACTION_CHECK_TTS_DATA意图,如果返回TextToSpeech.Engine.CHECK_VOICE_DATA_PASS以外的任何内容,我们调用TextToSpeech.Engine.ACTION_INSTALL_TTS_DATA意图.
我们无法访问运行4.2的设备.我今天去了一家当地商店,在安装了4.2的Nexus 7平板电脑上下载了应用程序,并且能够重现这个问题.但是,当我们基于Nexus 7创建AVD并运行模拟器时,语音提示工作正常,我们无法重现该问题.
解决方法
OS 4.1无法正确处理安装数据的意图*
TextToSpeech.Engine.ACTION_INSTALL_TTS_DATA
OS 4.2无法正确处理检查语音数据的意图*
TextToSpeech.Engine.ACTION_CHECK_TTS_DATA
*我的意思是它没有按照旧版本返回正确的状态代码.例如,CHECK_TTS_DATA在显然安装了语音数据时返回CHECK_VOICE_DATA_MISSING_DATA.现在可能需要传递一些其他意图数据,但我不确定这些数据的记录位置.
在我的应用程序中,我不得不为新的操作系统版本禁用这些检查.我怀疑谷歌可能已经这样做了,因为他们使用Android的条款现在要求TTS(但我无法验证这一点 – 我确信那里有一个网站,其中描述了必须实现的被称为’Android’的内容)
更新
正如我所怀疑的那样,Android OS 4.1现在要求将Text-to-Speech包含在每个Android设备中,因此检查现在有点多余.从这个链接:Android 4.1 Compatibility Definition
3.11 Text-to-Speech
Android 4.1 includes APIs that allow applications to make use of text-to-speech (TTS) services,and allows service providers to provide implementations of TTS services [Resources,32]. Device implementations MUST meet these requirements related to the Android TTS framework:
- Device implementations MUST support the Android TTS framework APIs and SHOULD include a TTS engine supporting the languages available on the device. Note that the upstream Android open source software includes a full-featured TTS engine implementation.
- Device implementations MUST support installation of third-party TTS engines.
- Device implementations MUST provide a user-accessible interface that allows users to select a TTS engine for use at the system level.