Check if Android mic is being used by another app

2019-02-28 15:57发布

I want to check the noise level using the android mic. However before accessing the mic I want to know if the mic is being accessed by another application. How do I check if the mic is being accessed by another application?

2条回答
不美不萌又怎样
2楼-- · 2019-02-28 16:35

Information about active input streams and where they are routed is held by the AudioFlinger, AudioPolicyManager and AudioHardware instances, which do not share this information with applications.
The AudioManager class provides an isMicrophoneMute() method to applications, but the mic may very well be unmuted while it's unused, so that method doesn't really tell you anything about whether the mic currently is being used or not.

One possible way to find out if there are any input streams routed to the microphone is to do a dumpsys on media.audio_policy and media.audio_flinger and parse the output. But the risk is that the output will look different on different devices, plus I don't know if you're allowed to dump the status of those services on a non-rooted device.

查看更多
smile是对你的礼貌
3楼-- · 2019-02-28 16:51

I think Michael is right but we can't use dumpsys on Android 2.3 and further for some of the services

查看更多
登录 后发表回答