Stopping & starting music on incoming calls
There are a few things you can do: First of all, you can listen for changes in the call state using a PhoneStateListener. You can register the listener in the TelephonyManager: PhoneStateListener phoneStateListener = new PhoneStateListener() { @Override public void onCallStateChanged(int state, String incomingNumber) { if (state == TelephonyManager.CALL_STATE_RINGING) { //Incoming call: Pause music } … Read more