diff --git a/fmapp2/src/com/caf/fmradio/FMRadioService.java b/fmapp2/src/com/caf/fmradio/FMRadioService.java index 6554c90dd3f4ce6d8834cc2d8d719f622fee996f..0b7a36624ba81415ef04a30ce306ece9b6d4086a 100644 --- a/fmapp2/src/com/caf/fmradio/FMRadioService.java +++ b/fmapp2/src/com/caf/fmradio/FMRadioService.java @@ -3741,11 +3741,11 @@ public class FMRadioService extends Service public void onServiceConnected(int profile, BluetoothProfile proxy) { mA2dpProfile = (BluetoothA2dp) proxy; mA2dpDeviceList = mA2dpProfile.getConnectedDevices(); - - if (mA2dpDeviceList.isEmpty()) + if (mA2dpDeviceList == null || mA2dpDeviceList.size() == 0) mA2dpConnected = false; else mA2dpConnected = true; + mA2dpDisconnected = !mA2dpConnected; mSpeakerPhoneOn = mA2dpConnected; Log.d(LOGTAG, "A2DP Status: " + mA2dpConnected);