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
- ScrollView with ConstraintLayout
- dialog fragment
- recyclerview
- Retrofit with MVVM
- 안드로이드
- 뷰바인딩
- 다이얼로그 크기조절
- lifecycleScope
- 다이얼로그 프래그먼트
- programmers
- 위치정보확인
- NestedScrollView
- 리사이클러뷰
- Android
- dialogfragment singleton
- java
- viewBinding
- 레트로핏2
- 스크롤뷰 자식 뷰 높이 동적조절
- 프로그래머스
- 인텐트란?
- 데이터바인딩
- Retrofit Kotlin
- ScrollView Child View Height Programmatically
- DataBinding
- location System
- 쉐어드
- 레트로핏 코틀린
- dialog resize
- 레트로핏 MVVM
Archives
- Today
- Total
안드로이드 세계
[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.contentResolver, Settings.Secure.LOCATION_MODE, Settings.Secure.LOCATION_MODE_OFF)
mode != Settings.Secure.LOCATION_MODE_OFF
}
}
반환 값이 트루가 온다면 위치정보는 on상태이며, false가 오게 된다면 위치정보는 off상태이다.
더 사용하기 편하게 확장 함수로 표현하게 되면
fun Context.isEnableLocationSystem(): Boolean {
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
val locationManager = getSystemService(Context.LOCATION_SERVICE) as? LocationManager
locationManager?.isLocationEnabled!!
}else{
val mode = Settings.Secure.getInt(contentResolver, Settings.Secure.LOCATION_MODE, Settings.Secure.LOCATION_MODE_OFF)
mode != Settings.Secure.LOCATION_MODE_OFF
}
}
이렇게 된다.
'안드로이드(Android) > 코틀린(Kotlin)' 카테고리의 다른 글
[Android] Recycler View - Step 4 (0) | 2021.01.19 |
---|---|
[Android] Recycler View - Step 3 (0) | 2021.01.16 |
[Android] Recycler View - Step 2 (0) | 2021.01.15 |
[Android] Recycler View - Step 1 (0) | 2021.01.15 |
[Android] 다이얼로그 크기조절하기(Dialog or Dialog Fragment Resize) (0) | 2021.01.11 |
Comments