공부하는 다락방

Bluetooth가 off 되었어도 스캔할 수 있는 방법 본문

Android

Bluetooth가 off 되었어도 스캔할 수 있는 방법

권파인 2016. 6. 14. 15:51

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

    mBluetoothAdapter = mBluetoothManager.getAdapter();

// 리플랙션
try {
Method method = mBluetoothAdapter.getClass().getMethod("enableBLE");
boolean result = (Boolean) method.invoke(mBluetoothAdapter);
Log.d(TAG, ">> " +result);
}
catch (Exception e){
Log.
e(TAG, e.getMessage());
}

// 스캔
mBluetoothAdapter.startLeScan(null, mLeScanCallback);


Comments