将文本转换为符号,然后将符号转换为声音
我想知道如何让用户输入文本例如。 “TEXT”,然后让我的应用程序将该“TEXT”转换为“@&^@”之类的内容,然后让我的应用程序将“@&^@”识别为 4 个不同的字母,例如。 “@”“&” “^”“@”,然后播放该字母的声音。我有每个字母的发音的录音。
任何帮助将非常感激。
I'd like to know how to let a user input text ex. "TEXT", then have my app convert that "TEXT" into something like "@&^@", then have my app recognize "@&^@" as 4 different letters, ex. "@" "&" "^" "@", then play that letter's sound. I have recordings of each letter's sound.
ANY help will be very much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,使用 EditText 创建一个应用程序。
然后创建一个侦听器来检测用户何时更改了文本。
在那个听众中......
检索文本
将其转换为您的符号
对于每个符号,播放适当的声音。您需要实现一些按顺序对它们进行排队的功能,以便在最后一个播放完毕后就可以开始播放。
我建议您一次解决这些问题,针对上述每一点在本网站上提出一个问题。
First, create an app with an EditText.
Then create a listener which detects when a user has changed the text.
In that listener....
retrieve the text
Convert it into your symbols
For each symbol, play the appropriate sound. You'll need to implement something that queues them in order, so one starts playing once the last has finished.
I suggest you tackle these one step at a time, asking one question on this site for each of the above points.