diff options
author | Amith Yamasani <yamasani@google.com> | 2011-06-02 11:48:55 -0700 |
---|---|---|
committer | Amith Yamasani <yamasani@google.com> | 2011-06-02 11:48:55 -0700 |
commit | 3a5b3494a7543c1ddb66c6f630856c3aace03f0a (patch) | |
tree | 9e74a4d036e08f84d8ab0bdfbef8a98f49f3d87d /src | |
parent | 8ac8456491e1409a071c7cf4e164440aeec7c4dd (diff) | |
download | packages_apps_settings-3a5b3494a7543c1ddb66c6f630856c3aace03f0a.zip packages_apps_settings-3a5b3494a7543c1ddb66c6f630856c3aace03f0a.tar.gz packages_apps_settings-3a5b3494a7543c1ddb66c6f630856c3aace03f0a.tar.bz2 |
Make the BT class icon visible.
This change is required due to a change in the framework to accomodate smaller screen sizes.
Bug: 4519989
Change-Id: I77c5d72b29dec69df2bdd4d82811f4828ad155a6
Diffstat (limited to 'src')
-rw-r--r-- | src/com/android/settings/bluetooth/BluetoothDevicePreference.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/settings/bluetooth/BluetoothDevicePreference.java b/src/com/android/settings/bluetooth/BluetoothDevicePreference.java index 2dba279..391c941 100644 --- a/src/com/android/settings/bluetooth/BluetoothDevicePreference.java +++ b/src/com/android/settings/bluetooth/BluetoothDevicePreference.java @@ -120,7 +120,7 @@ public final class BluetoothDevicePreference extends Preference implements ImageView btClass = (ImageView) view.findViewById(android.R.id.icon); btClass.setImageResource(getBtClassDrawable()); btClass.setAlpha(isEnabled() ? 255 : sDimAlpha); - + btClass.setVisibility(View.VISIBLE); mDeviceSettings = (ImageView) view.findViewById(R.id.deviceDetails); if (mOnSettingsClickListener != null) { mDeviceSettings.setOnClickListener(this); |