将文本转换为符号,然后将符号转换为声音

发布于 2024-11-09 05:16:42 字数 165 浏览 0 评论 0原文

我想知道如何让用户输入文本例如。 “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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥抱没勇气 2024-11-16 05:16:42
  1. 首先,使用 EditText 创建一个应用程序。

  2. 然后创建一个侦听器来检测用户何时更改了文本。

  3. 在那个听众中......

    • 检索文本

    • 将其转换为您的符号

    • 对于每个符号,播放适当的声音。您需要实现一些按顺序对它们进行排队的功能,以便在最后一个播放完毕后就可以开始播放。

我建议您一次解决这些问题,针对上述每一点在本网站上提出一个问题。

  1. First, create an app with an EditText.

  2. Then create a listener which detects when a user has changed the text.

  3. 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文