일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- bottomNavigation animation
- 고유식별자
- 안드로이드 디버깅툴
- Bluetooth 스캔
- 바텀네비게이션
- 앱강종현상
- 로그캣 색상변경
- BottomNavigation
- 안드로이드aab변환
- aab파일apk변환
- targetSDK29
- svn체크아웃
- 로그캣 색상지정
- Android Bluetooth
- 투명도 hex값
- Android10
- 바텀네비
- Android OS 10
- 안드로이드 로그캣
- 로띠애니메이션
- target29
- apk변환
- lottieAnimation
- Opacity Hex
- 디바이스ID
- retrieveExplicitStyle
- 앱강종
- 안드로이드apk변환
- Android
- 안드로이드
Archives
- Today
- Total
목록Android Bluetooth (1)
공부하는 다락방
Bluetooth가 off 되었어도 스캔할 수 있는 방법
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(nu..
Android
2016. 6. 14. 15:51