Text to speech(TTS)-Android - Stack Overflow

Text to speech(TTS)-Android - Stack Overflow

瀏覽:886
日期:2025-04-23
Text to speech is built into Android 1.6+. Here is a simple example of how to do it. TextToSpeech tts = new TextToSpeech(this, this); tts.setLanguage(Locale.US); tts.speak("Text to say aloud", TextToSpeech.QUEUE_ADD, null); More info: http://android-devel...看更多