일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Android Bluetooth
- 앱강종
- 바텀네비게이션
- 로그캣 색상변경
- Opacity Hex
- targetSDK29
- 로띠애니메이션
- Android OS 10
- aab파일apk변환
- Android
- svn체크아웃
- 투명도 hex값
- 안드로이드 디버깅툴
- 안드로이드 로그캣
- Bluetooth 스캔
- 안드로이드apk변환
- lottieAnimation
- 앱강종현상
- target29
- 안드로이드
- BottomNavigation
- 바텀네비
- 디바이스ID
- apk변환
- 고유식별자
- Android10
- 로그캣 색상지정
- bottomNavigation animation
- 안드로이드aab변환
- retrieveExplicitStyle
Archives
- Today
- Total
공부하는 다락방
Bluetooth가 off 되었어도 스캔할 수 있는 방법 본문
mBluetoothManager = (BluetoothManager) getSystemService(Context.BLUET
OOTH_SERVICE );
mBluetoothAdapter = mBluetoothManager.getAdapter(); try {
// 리플랙션
Method method = mBluetoothAdapter.getClass().getMethod("enableBLE"); Log.d(TAG, ">> " +result);
boolean result = (Boolean) method.invoke(mBluetoothAdapter);
} catch (Exception e){
Log.e(TAG, e.getMessage());
}
// 스캔
mBluetoothAdapter.startLeScan(null , mLeScanCallback);
'Android' 카테고리의 다른 글
URL XML 파싱 방법 (0) | 2017.03.08 |
---|---|
[안드로이드 스튜디오]로그캣(logcat) 색깔 바꾸기 (0) | 2017.01.05 |
[WebView] addJavascriptInterface() 사용시 주의사항 (1) | 2017.01.05 |
안드로이드 6.0에서 디바이스 MACAddress 가져오는 방법 (2) | 2016.06.14 |
Android 설치 방법 (0) | 2014.10.14 |
Comments