在 Phonegap / Sencha Touch 中以编程方式使麦克风静音

发布于 2024-12-11 19:04:02 字数 110 浏览 0 评论 0原文

我正在尝试使用phonegap和sencha touch构建一个Android应用程序,在我的应用程序中,我想在用户呼叫时将麦克风静音,任何人都可以告诉我是否可以使用这些Android Web工具来实现它?

I am trying to build an android application using phonegap and sencha touch , in my application i want to mute the microphone whenever user calls , can anyone tell me is it possible to implement it in using these android web tools ?

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

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

发布评论

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

评论(1

暖树树初阳… 2024-12-18 19:04:02

据我所知,PhoneGap 没有访问麦克风的 API。您需要创建一个 适用于 Android 的 PhoneGap 插件 在 Android 上发出以下命令:

AudioManager audioManager = (AudioManager)getSystemService(Context.AUDIO_SERVICE);
audioManager.setMicrophoneMute(true);

PhoneGap has no API to access the microphone as far as I know. You'll need to create a PhoneGap plugin for android that issues the following command on Android:

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