使用BluetoothManager来替代BluetoothAdapter来获取BluetoothAdapter实例。
示例代码如下:
import android.bluetooth.BluetoothAdapter; import android.bluetooth.BluetoothManager; import android.content.Context;
final BluetoothManager bluetoothManager = (BluetoothManager) context.getSystemService(Context.BLUETOOTH_SERVICE); final BluetoothAdapter bluetoothAdapter = bluetoothManager.getAdapter();