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 with MVVM
- 프로그래머스
- NestedScrollView
- recyclerview
- 위치정보확인
- 데이터바인딩
- location System
- DataBinding
- 레트로핏 코틀린
- dialog fragment
- 레트로핏 MVVM
- 스크롤뷰 자식 뷰 높이 동적조절
- 뷰바인딩
- java
- 안드로이드
- Android
- dialog resize
- 쉐어드
- dialogfragment singleton
- 인텐트란?
- programmers
- ScrollView with ConstraintLayout
- 리사이클러뷰
- 다이얼로그 크기조절
- viewBinding
- 다이얼로그 프래그먼트
- ScrollView Child View Height Programmatically
- Retrofit Kotlin
- 레트로핏2
- lifecycleScope
Archives
- Today
- Total
목록location System (1)
안드로이드 세계
[Android] 안드로이드 기기 위치정보 켜져있는지 여부확인하는 방법
위치정보를 받기 위해서는 위치정보 퍼미션도 중요하지만, 기기가 위치정보를 on/off 했는지 확인하는 것도 중요하다. 아래의 방법을 사용한다면 위치정보 on/off여부를 알 수있다. fun isEnableLocationSystem(context: Context): Boolean { return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) { val locationManager = context.getSystemService(Context.LOCATION_SERVICE) as? LocationManager locationManager?.isLocationEnabled!! }else{ val mode = Settings.Secure.getInt(context...
안드로이드(Android)/코틀린(Kotlin)
2021. 1. 12. 15:26