user340
user340

Reputation: 383

Check if Android mic is being used by another app

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?

Upvotes: 2

Views: 4654

Answers (2)

user1402643
user1402643

Reputation: 419

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

Upvotes: 0

Michael
Michael

Reputation: 58507

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.

Upvotes: 1

Related Questions