如何让手机与铃声同步振动?

发布于 2024-09-27 10:51:52 字数 37 浏览 2 评论 0原文

我想以与来电相同的方式使手机与铃声同步振动。我该如何实现它?

I want to vibrate the phone in the same way as the incoming call in sync with the ringtone. How do I achieve it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

各自安好 2024-10-04 10:51:52
  • 获取一个 MP3 库,为您提供声音幅度的反馈(类似于 winamp 中的均衡器)
  • 将此幅度标准化为 [0,1] 的范围,
  • android vibrator api 仅支持振动持续时间(而不是强度),您需要将此幅度离散化为 0 或 1(对于某些持续时间短)。
  • 如果声音的强度小于某个值 0.5,则在该持续时间内不要振动。否则震动。
  • Get an MP3 library that gives you feedback for magnitude of sound (Something like equalizer in winamp)
  • Normalize this magnitude to a scale of [0,1]
  • As the android vibrator api supports only vibration duration (not intensity) you need to discretize this magnitude to either 0 or 1 (for some small duration).
  • If the magnitude of sound is less than some value, 0.5, do not vibrate for that duration. Else vibrate.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文