일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
Tags
- room
- Binding Adapter
- recyclerview
- Gradle
- BottomNavigationView
- Datastore
- kotlin
- TypeConverter
- fragment
- asLiveData()
- Navigation Component
- Livedata
- ViewModel
- 스플래시
- imageview
- 개발자
- 주석
- 일렉트론
- 면접
- nav_graph
- 안드로이드
- Jetpack Compose
- Safe Args
- hilt
- 취업
- android studio
- electron
- themes.xml
- 테마
- Android
Archives
- Today
- Total
목록network (1)
나만 보는 일기장
네트워크 연결 상태를 확인하는 함수
private fun hasInternetConnection(): Boolean { val connectivityManager = getApplication().getSystemService( Context.CONNECTIVITY_SERVICE ) as ConnectivityManager val activeNetwork = connectivityManager.activeNetwork ?: return false val capabilities = connectivityManager.getNetworkCapabilities(activeNetwork) ?: return false return when { capabilities.hasTransport(NetworkCapabilities.TRANSPORT_WIF..
개발/Android
2021. 11. 8. 17:33