diff --git a/src/com/android/settings/bluetooth/CachedBluetoothDevice.java b/src/com/android/settings/bluetooth/CachedBluetoothDevice.java index db20411bc60..11885ac6c72 100644 --- a/src/com/android/settings/bluetooth/CachedBluetoothDevice.java +++ b/src/com/android/settings/bluetooth/CachedBluetoothDevice.java @@ -528,14 +528,17 @@ class CachedBluetoothDevice implements Comparable { public int getBtClassDrawable() { if (mBtClass != null) { switch (mBtClass.getMajorDeviceClass()) { - case BluetoothClass.Device.Major.COMPUTER: - return R.drawable.ic_bt_laptop; + case BluetoothClass.Device.Major.COMPUTER: + return R.drawable.ic_bt_laptop; - case BluetoothClass.Device.Major.PHONE: - return R.drawable.ic_bt_cellphone; + case BluetoothClass.Device.Major.PHONE: + return R.drawable.ic_bt_cellphone; - case BluetoothClass.Device.Major.PERIPHERAL: - return getHidClassDrawable(); + case BluetoothClass.Device.Major.PERIPHERAL: + return getHidClassDrawable(); + + case BluetoothClass.Device.Major.IMAGING: + return R.drawable.ic_bt_imaging; } } else { Log.w(TAG, "mBtClass is null");