我试图用一个Android应用程序重现一些文本,这将有助于视障人士,尤其是TTS,但在我的情况下,我需要葡萄牙语 - 巴西语,而TTS类没有葡萄牙语可用语言环境。有没有人知道如何实施葡萄牙巴西读者?
我使用的是Android Studio,MinSDK是15。
...
tts = new TextToSpeech (this, this);
tts.setLanguage(Locale.[X]);
...
tts.speak("Muito obrigado a todos!", TextToSpeech.QUEUE_FLUSH, null);
...
答案 0 :(得分:1)
你是如何制作onInitListener()
的?致电tts = new TextToSpeech (this, this);
onInitListener()
时,会将TextToSpeech服务与您的tts
实例相关联。因此,如果您尝试设置语言或说出声音,请检查以下值:
tts = new TextToSpeech (this, this);
@Override
public void onInit(int status) {
if (status == TextToSpeech.SUCCESS) {
int res = tts.setLanguage(Locale.[X]);
if (res >= TextToSpeech.LANG_AVAILABLE) {
// Then, you can speak with your locale.
// Call speak() in here or after this method.
tts.speak("Muito obrigado a todos!", TextToSpeech.QUEUE_FLUSH, null);
}
}
}
答案 1 :(得分:0)
解决!我的问题是在设备上没有安装TTS。所以,只需从谷歌商店(https://play.google.com/store/apps/details?id=com.google.android.tts&hl=en)安装它。