Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Retrofit Kotlin
- viewBinding
- 레트로핏 코틀린
- 데이터바인딩
- 레트로핏2
- 다이얼로그 프래그먼트
- java
- dialogfragment singleton
- ScrollView Child View Height Programmatically
- dialog fragment
- programmers
- 안드로이드
- location System
- Android
- recyclerview
- dialog resize
- ScrollView with ConstraintLayout
- Retrofit with MVVM
- 뷰바인딩
- 프로그래머스
- 다이얼로그 크기조절
- lifecycleScope
- NestedScrollView
- 스크롤뷰 자식 뷰 높이 동적조절
- 위치정보확인
- 레트로핏 MVVM
- 리사이클러뷰
- DataBinding
- 인텐트란?
- 쉐어드
Archives
- Today
- Total
목록Bluetooth (1)
안드로이드 세계
[Android] BluetoothDevice 현재 연결상태확인
BlueTooth가 앱이 켜진 후 연결되는건 잘감지가되지만, 이미 연결된 장치가 있는지 여부에 대해서 알 필요가 있었다. 구글링을 통해 알게되었는데, Method방식을 이용하였다. public boolean isConnected(BluetoothDevice device) { try { Method m = device.getClass().getMethod("isConnected", (Class[]) null); boolean connected = (boolean) m.invoke(device, (Object[]) null); return connected; } catch (Exception e) { throw new IllegalStateException(e); } } 연결되어있는 장치가 있다면 true를..
안드로이드(Android)/자바(JAVA)
2021. 1. 25. 23:00