I am wanting to get Audio feedback from text entered into a EditText view.
I thought of getting the last key pressed and play the associated audio file, but I cannot find how to get the last key pressed.
Any ideas?
I already have all the Audio files, i.e. "1.mp3", "2.mp3", "3.mp3", etc...
I thought of getting the last key pressed and play the associated audio file, but I cannot find how to get the last key pressed.
B4X:
Sub txtNewReading_TextChanged (Old As String, New As String
MP.Load(File.DirAssets, KeyPressed & ".mp3"):
MP.Play
End Sub
Any ideas?
I already have all the Audio files, i.e. "1.mp3", "2.mp3", "3.mp3", etc...