diff --git a/src/com/android/settings/bluetooth/BluetoothDeviceUpdater.java b/src/com/android/settings/bluetooth/BluetoothDeviceUpdater.java index 0ae85b11c61..e322bb4d86b 100644 --- a/src/com/android/settings/bluetooth/BluetoothDeviceUpdater.java +++ b/src/com/android/settings/bluetooth/BluetoothDeviceUpdater.java @@ -166,6 +166,10 @@ public abstract class BluetoothDeviceUpdater implements BluetoothCallback { public void onActiveDeviceChanged(CachedBluetoothDevice activeDevice, int bluetoothProfile) { } + @Override + public void onProfileAudioStateChanged(int bluetoothProfile, int state) { + } + /** * Set the context to generate the {@link Preference}, so it could get the correct theme. */ diff --git a/src/com/android/settings/bluetooth/BluetoothSummaryUpdater.java b/src/com/android/settings/bluetooth/BluetoothSummaryUpdater.java index 43d25e7b49d..380bf699a1e 100644 --- a/src/com/android/settings/bluetooth/BluetoothSummaryUpdater.java +++ b/src/com/android/settings/bluetooth/BluetoothSummaryUpdater.java @@ -80,6 +80,10 @@ public final class BluetoothSummaryUpdater extends SummaryUpdater implements Blu public void onActiveDeviceChanged(CachedBluetoothDevice activeDevice, int bluetoothProfile) { } + @Override + public void onProfileAudioStateChanged(int bluetoothProfile, int state) { + } + @Override public void register(boolean listening) { if (mBluetoothAdapter == null) { diff --git a/src/com/android/settings/bluetooth/DeviceListPreferenceFragment.java b/src/com/android/settings/bluetooth/DeviceListPreferenceFragment.java index 04593176c49..0a7dc7cbf1b 100644 --- a/src/com/android/settings/bluetooth/DeviceListPreferenceFragment.java +++ b/src/com/android/settings/bluetooth/DeviceListPreferenceFragment.java @@ -275,6 +275,9 @@ public abstract class DeviceListPreferenceFragment extends @Override public void onActiveDeviceChanged(CachedBluetoothDevice activeDevice, int bluetoothProfile) { } + @Override + public void onProfileAudioStateChanged(int bluetoothProfile, int state) { } + /** * Return the key of the {@link PreferenceGroup} that contains the bluetooth devices */