在词典应用程序中发音?

时间:2013-01-24 09:55:29

标签: android dictionary text-to-speech

我正在制作英语 - 越南语词典应用程序,请建议如何用英语单词代词。

我的意思是,是否有任何解决方案:输入:一个单词+拼音 - >输出:声音?

我已经考虑过Text-to-Speech,但它需要互联网连接,所以它不适用于我的Dictionary App。

1 个答案:

答案 0 :(得分:3)

如果没有在SD卡中安装tts lib,TTS不需要互联网连接,除非是第一次。

 TextToSpeech tts = new TextToSpeech(this, this);
 tts.setLanguage(Locale.US);
 tts.speak("Hello..I am TTS", TextToSpeech.QUEUE_ADD, null);

http://developer.android.com/reference/android/speech/tts/TextToSpeech.html