内置Android中的文本到语音

时间:2012-01-04 10:02:11

标签: android text-to-speech

Android中是否有内置的文本到语音库?如果不是,您是否知道要使用的外部库?

1 个答案:

答案 0 :(得分:2)

看看这个Android TTS API

以下是使用它的示例:

t1=new TextToSpeech(getApplicationContext(), new TextToSpeech.OnInitListener() {
        @Override
        public void onInit(int status) {
            if(status != TextToSpeech.ERROR) {
                t1.setLanguage(Locale.UK);
            }
        }
    });

t1.speak("This will be spoken.", TextToSpeech.QUEUE_FLUSH, null);