android蓝牙低能量心率监测器

时间:2014-12-22 07:54:22

标签: android bluetooth-lowenergy

我正在制作蓝牙低能量心率监测仪。 我使用过此代码,但我在if (btAdapter != null && !btAdapter.isEnabled())中有一个错误 错误是未知的类:btAdapter

 BluetoothManager btManager = (BluetoothManager)getSystemService(Context.BLUETOOTH_SERVICE);

BluetoothAdapter btAdapter = btManager.getAdapter();

if (btAdapter != null && !btAdapter.isEnabled()) {
    Intent enableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
    startActivityForResult(enableIntent,REQUEST_ENABLE_BT);
}

1 个答案:

答案 0 :(得分:2)

尝试使用静态getDefaultAdapter()方法:

BluetoothAdapter btAdapter = BluetoothAdapter.getDefaultAdapter();