我想从我的服务类中启用禁用蓝牙我正在使用以下代码
BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if (!mBluetoothAdapter.isEnabled()) {
mBluetoothAdapter.enable();
}else{
mBluetoothAdapter.disable();
}
但它不起作用所以我如何从我的服务类启用/禁用蓝牙以及我需要哪些权限