Android TTS add languages

I would like to develop an application that uses TTS for many languages. The problem is that only a few languages ​​come with certain devices, depending on the country, I suppose (I'm talking about PICO). Is there a way to use the built-in TTS in my apk or find missing PICO files somewhere on the network and put them in apk ... or any other solution to support languages ​​that are present in the device by default?

+5
source share
1 answer

Read this article: http://android-developers.blogspot.com/2009/09/introduction-to-text-to-speech-in.html

There is an intention (action - ACTION_INSTALL_TTS_DATA) that will automatically download the necessary languages.

, ,

a) http://developer.android.com/reference/android/speech/tts/TextToSpeechService.html).

b) API - addEarcon (String earcon, String filename)  (Http://developer.android.com/reference/android/speech/tts/TextToSpeech.html)

+3

All Articles