我正在制作蓝牙低能量心率监测仪。
我使用过此代码,但我在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);
}
答案 0 :(得分:2)
尝试使用静态getDefaultAdapter()方法:
BluetoothAdapter btAdapter = BluetoothAdapter.getDefaultAdapter();