Android internal microphone release issues Android internal microphone release issues android android

Android internal microphone release issues


Currently, there is no way to check whether another app requests the microphone. However, there are some workarounds:

  • If you record sound in an Activity, simply release the microphone in onPause(), so that the foreground app can use it. This won't work if you record audio in a background service.
  • Pause the recording when there is an incoming call. To detect incoming (and outgoing) calls, take a look at this excellent answer. When the call ends, resume the recording.
  • A dirty hack: If detecting incoming calls isn't enough, you could loop through all running apps and see if they have the microphone permission. As soon as an app with microphone permission is running, pause the recording. Getting all running apps can be difficult. For more infos, look here, here, here and here for checking the permissions.


As far as I know, there is no way to know the microphone's state is Busy, Available or if somebody is requesting for it because it's somehow these are responsibility of system to manage processes and resources so keeping this in mind , you can't keep the microphone forever and there so no way you can control it mean you can't mange and detect the request on resources .Following there is some info that might help you.

What you can try is , overcome the all possibilities when system can use microphone like setup a broadcast receiver for call broadcasts and when they triggered release the microphone and when call is done then you can acquire it again.


In my case I created background thread that checked incoming bits from microphone. If they would zero (or several seconds data lag) the app interrupt the process. Nevertheless, of course, this is not a "good" solution but might be helpful.