일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- nav_graph
- Binding Adapter
- 테마
- Jetpack Compose
- 안드로이드
- Gradle
- imageview
- 면접
- Safe Args
- BottomNavigationView
- 주석
- asLiveData()
- android studio
- Datastore
- Android
- 스플래시
- ViewModel
- room
- hilt
- 일렉트론
- recyclerview
- 취업
- themes.xml
- 개발자
- Livedata
- kotlin
- fragment
- Navigation Component
- electron
- TypeConverter
Archives
- Today
- Total
목록ConnectivityManager (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