我正在尝试使用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);

...

最佳答案

您是如何制作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);
        }
    }
}

10-05 22:22
查看更多