diff options
author | Jeff Brown <jeffbrown@google.com> | 2012-09-24 20:33:51 -0700 |
---|---|---|
committer | Jeff Brown <jeffbrown@google.com> | 2012-09-24 20:33:51 -0700 |
commit | a17a5b814f1c578df28cd5d444bd8abc3adbbba0 (patch) | |
tree | ed0c3eb09b25a757faa13c3d938683e67af9bc00 /src/com/android/settings/bluetooth | |
parent | 8bea3c3fb8b3ecbb33fbd5b159faaa7d229e7cf1 (diff) | |
download | packages_apps_settings-a17a5b814f1c578df28cd5d444bd8abc3adbbba0.zip packages_apps_settings-a17a5b814f1c578df28cd5d444bd8abc3adbbba0.tar.gz packages_apps_settings-a17a5b814f1c578df28cd5d444bd8abc3adbbba0.tar.bz2 |
Fix regression in Bluetooth settings.
Bug: 7207090
Change-Id: Ie14a1d36a61b571766d2025ed7d8079712727690
Diffstat (limited to 'src/com/android/settings/bluetooth')
3 files changed, 32 insertions, 4 deletions
diff --git a/src/com/android/settings/bluetooth/BluetoothProgressCategory.java b/src/com/android/settings/bluetooth/BluetoothProgressCategory.java new file mode 100644 index 0000000..1c81360 --- /dev/null +++ b/src/com/android/settings/bluetooth/BluetoothProgressCategory.java @@ -0,0 +1,29 @@ +/* + * Copyright (C) 2012 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.settings.bluetooth; + +import com.android.settings.ProgressCategory; +import com.android.settings.R; + +import android.content.Context; +import android.util.AttributeSet; + +public class BluetoothProgressCategory extends ProgressCategory { + public BluetoothProgressCategory(Context context, AttributeSet attrs) { + super(context, attrs, R.string.bluetooth_no_devices_found); + } +} diff --git a/src/com/android/settings/bluetooth/BluetoothSettings.java b/src/com/android/settings/bluetooth/BluetoothSettings.java index 0765d8f..e9ba39d 100755 --- a/src/com/android/settings/bluetooth/BluetoothSettings.java +++ b/src/com/android/settings/bluetooth/BluetoothSettings.java @@ -282,8 +282,7 @@ public final class BluetoothSettings extends DeviceListPreferenceFragment { // Available devices category if (mAvailableDevicesCategory == null) { - mAvailableDevicesCategory = new ProgressCategory(getActivity(), null, - R.string.bluetooth_no_devices_found); + mAvailableDevicesCategory = new BluetoothProgressCategory(getActivity(), null); } else { mAvailableDevicesCategory.removeAll(); } diff --git a/src/com/android/settings/bluetooth/DeviceListPreferenceFragment.java b/src/com/android/settings/bluetooth/DeviceListPreferenceFragment.java index 90f8de5..7fc1b65 100644 --- a/src/com/android/settings/bluetooth/DeviceListPreferenceFragment.java +++ b/src/com/android/settings/bluetooth/DeviceListPreferenceFragment.java @@ -193,8 +193,8 @@ public abstract class DeviceListPreferenceFragment extends } private void updateProgressUi(boolean start) { - if (mDeviceListGroup instanceof ProgressCategory) { - ((ProgressCategory) mDeviceListGroup).setProgress(start); + if (mDeviceListGroup instanceof BluetoothProgressCategory) { + ((BluetoothProgressCategory) mDeviceListGroup).setProgress(start); } } |