Hi, i try to make a simple app that speach a text from a editbox. On the emulator its working ok, but installed on my HTC Desire i can't hear anything... The code is:
and the second question: is the Romanian language available for TTS?
Thank you!
B4X:
Sub Activity_Resume
If TTS1.IsInitialized = False Then
TTS1.Initialize("TTS1")
TTS1.SetLanguage("en_US","")
End If
End Sub
Sub Activity_Pause (UserClosed As Boolean)
TTS1.Release
End Sub
Sub Asculta_Click
If Traducere.Text.Length > 0 Then
TTS1.Speak(Traducere.Text, True)
End If
End Sub
and the second question: is the Romanian language available for TTS?
Thank you!