diff --git a/src/com/android/settings/bluetooth/BluetoothDevicePreference.java b/src/com/android/settings/bluetooth/BluetoothDevicePreference.java index 209c900927e..e29096126f9 100644 --- a/src/com/android/settings/bluetooth/BluetoothDevicePreference.java +++ b/src/com/android/settings/bluetooth/BluetoothDevicePreference.java @@ -338,6 +338,9 @@ public final class BluetoothDevicePreference extends GearPreference { if (mCachedDevice.getBondState() == BluetoothDevice.BOND_BONDED) { ImageView deviceDetails = (ImageView) view.findViewById(R.id.settings_button); + deviceDetails.setContentDescription( + getContext().getResources().getString( + R.string.device_detail_icon_content_description, getTitle())); if (deviceDetails != null) { deviceDetails.setOnClickListener(this);