Major refactoring of Bluetooth settings classes. - Moved all functionality from LocalBluetoothManager into new LocalBluetoothAdapter and LocalBluetoothPreferences, and into existing classes. - Refactored functionality from BluetoothEventRedirector into new BluetoothEventManager class, deleting the original version. New version uses a HashMap from action Strings to implementers of the BluetoothEventManager.Handler interface. - Created new BluetoothDiscoveryReceiver to update shared preferences timestamp for Bluetooth discovery start/finish. This is the only event handling we need to do when the settings app is not visible, so it has its own receiver entry in AndroidManifest.xml. Edits are written using QueuedWork.singleThreadExecutor(), which BroadcastReceiver knows about and will wait for completion, eliminating the need for PendingResult. - Miscellaneous cleanups to code style and logic for readability. - Pulled some large switch statement code blocks into new methods. - Changed all Bluetooth state references to the new BluetoothProfile constants. - Changed use of deprecated Notification constructor in BluetoothPairingRequest to use Notification.Builder. - Moved Utf8ByteLengthFilter helper function from BluetoothNamePreference into its own class, and moved test cases into the same package. - Moved all LocalBluetoothProfileManager functionality related to specific profiles into new top-level classes (A2dpProfile, etc.), all implementing the LocalBluetoothProfile interface. - Moved all UI-related methods from CachedBluetoothDevice into the class that uses the method, or into the static Utils class for shared methods. Change-Id: I6d49b7f4ae0c7d7dcf62551ee40b51ecb5fe4f47
144 lines
4.7 KiB
Java
144 lines
4.7 KiB
Java
/*
|
|
* Copyright (C) 2008 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 android.app.AlertDialog;
|
|
import android.app.Dialog;
|
|
|
|
import android.bluetooth.BluetoothAdapter;
|
|
import android.content.BroadcastReceiver;
|
|
import android.content.Context;
|
|
import android.content.DialogInterface;
|
|
import android.content.Intent;
|
|
import android.content.IntentFilter;
|
|
import android.preference.EditTextPreference;
|
|
import android.text.Editable;
|
|
import android.text.InputFilter;
|
|
import android.text.TextWatcher;
|
|
import android.util.AttributeSet;
|
|
import android.widget.Button;
|
|
import android.widget.EditText;
|
|
|
|
/**
|
|
* BluetoothNamePreference is the preference type for editing the device's
|
|
* Bluetooth name. It asks the user for a name, and persists it via the
|
|
* Bluetooth API.
|
|
*/
|
|
public final class BluetoothNamePreference extends EditTextPreference implements TextWatcher {
|
|
// private static final String TAG = "BluetoothNamePreference";
|
|
private static final int BLUETOOTH_NAME_MAX_LENGTH_BYTES = 248;
|
|
|
|
private final LocalBluetoothAdapter mLocalAdapter;
|
|
|
|
private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
|
|
@Override
|
|
public void onReceive(Context context, Intent intent) {
|
|
String action = intent.getAction();
|
|
if (action.equals(BluetoothAdapter.ACTION_LOCAL_NAME_CHANGED)) {
|
|
setSummaryToName();
|
|
} else if (action.equals(BluetoothAdapter.ACTION_STATE_CHANGED) &&
|
|
(intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, BluetoothAdapter.ERROR) ==
|
|
BluetoothAdapter.STATE_ON)) {
|
|
setSummaryToName();
|
|
}
|
|
}
|
|
};
|
|
|
|
public BluetoothNamePreference(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
|
|
mLocalAdapter = LocalBluetoothManager.getInstance(context).getBluetoothAdapter();
|
|
|
|
setSummaryToName();
|
|
}
|
|
|
|
public void resume() {
|
|
IntentFilter filter = new IntentFilter();
|
|
filter.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);
|
|
filter.addAction(BluetoothAdapter.ACTION_LOCAL_NAME_CHANGED);
|
|
getContext().registerReceiver(mReceiver, filter);
|
|
|
|
// Make sure the OK button is disabled (if necessary) after rotation
|
|
EditText et = getEditText();
|
|
if (et != null) {
|
|
et.setFilters(new InputFilter[] {
|
|
new Utf8ByteLengthFilter(BLUETOOTH_NAME_MAX_LENGTH_BYTES)
|
|
});
|
|
|
|
et.addTextChangedListener(this);
|
|
Dialog d = getDialog();
|
|
if (d instanceof AlertDialog) {
|
|
Button b = ((AlertDialog) d).getButton(AlertDialog.BUTTON_POSITIVE);
|
|
b.setEnabled(et.getText().length() > 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
public void pause() {
|
|
EditText et = getEditText();
|
|
if (et != null) {
|
|
et.removeTextChangedListener(this);
|
|
}
|
|
getContext().unregisterReceiver(mReceiver);
|
|
}
|
|
|
|
private void setSummaryToName() {
|
|
if (mLocalAdapter != null && mLocalAdapter.isEnabled()) {
|
|
setSummary(mLocalAdapter.getName());
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected boolean persistString(String value) {
|
|
// Persist with Bluez instead of shared preferences
|
|
if (mLocalAdapter != null) {
|
|
mLocalAdapter.setName(value);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
protected void onClick() {
|
|
super.onClick();
|
|
|
|
// The dialog should be created by now
|
|
EditText et = getEditText();
|
|
if (et != null && mLocalAdapter != null) {
|
|
et.setText(mLocalAdapter.getName());
|
|
}
|
|
}
|
|
|
|
// TextWatcher interface
|
|
public void afterTextChanged(Editable s) {
|
|
Dialog d = getDialog();
|
|
if (d instanceof AlertDialog) {
|
|
((AlertDialog) d).getButton(DialogInterface.BUTTON_POSITIVE).setEnabled(s.length() > 0);
|
|
}
|
|
}
|
|
|
|
// TextWatcher interface
|
|
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
|
|
// not used
|
|
}
|
|
|
|
// TextWatcher interface
|
|
public void onTextChanged(CharSequence s, int start, int before, int count) {
|
|
// not used
|
|
}
|
|
|
|
}
|