I am trying to implement text to speech technology of android in my Activity. It is a simple word game and I want the tts engine to spell a single letter when the user presses some button. For example when the user presses the A button I want to hear "A".
The problem is the the .speak method only takes a String as input. So, when I tell the tss engine that I just want a single letter String, the sound is not the pronunciationof the letter. Is there any way that I can make it pronounce correctly the single letter strings?
The solution so far, was to use as String input, words that sound like the letters, ex "bee" for B, "see" for C and so on. But what about F, H and so on?
Any other ideas?
Thanks in advance!