Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pause music player on a phone call and again resume it after phone call in android

Tags:

android

I am using android.media.MediaPlayer object to play audio files in my app. Everything works fine but when a phone call comes while a song is playing the app does not pause the media player and you can hear the song during the phone call. Please tell me how to pause media player on a phone call and again resume it after call is ended.

like image 566
mudit Avatar asked Dec 03 '09 06:12

mudit


2 Answers

Use a PhoneStateListener to find out when the phone is in use.

like image 57
CommonsWare Avatar answered Nov 15 '22 09:11

CommonsWare


When your Activity (or service) is interrupted by the phone call place MediaPlayer#pause() into Activity#onPause and code that resumes playing into Activity#onResume I think the problem may be that the MediaPlayer is executed in its own thread and when your Activity is paused it doesn't mean that MediaPlayer is automatically paused as well

like image 25
Bostone Avatar answered Nov 15 '22 09:11

Bostone