250x250
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
- Navigation
- livedata
- Dialog
- binding
- scroll
- viewmodel
- tabbar
- 앱
- Button
- drift
- android
- Coroutines
- 안드로이드
- 앱바
- LifeCycle
- Compose
- 계측
- ScrollView
- Flutter
- TEST
- CustomScrollView
- DART
- Kotlin
- data
- intent
- activity
- textview
- appbar
- 테스트
- textfield
Archives
- Today
- Total
Study Record
[안드로이드] sharedPreferences 본문
728x90
✍ sharedPreferences
앱 내에 저장해야할 정보가 적을 경우 sharedPreferences API 를 사용한다. key-value 형식으로 데이터를 저장하여 key 값으로 value 값을 얻을 수 있다.
✍ 사용법
이름으로 식별되는 공유 환경설정 파일을 사용할 경우 getSharedPrederences() 함수를 사용하여 접근한다.
// getSharedPreferences(공유 파일 이름(String), 권한)
val sharedPref = activity?.getSharedPreferences("time", Context.MODE_PRIVATE)
※ 권한 부분에서 Context.MODE_WORLD_READABLE 및 Context.MODE_WORLD_WRITEABLE 모드는 Android 7.0(API 24)부터 중단되었다.
→ 공유 환경설정에서 쓰기
다음과 같이 putString(), putBoolean() 등과 같은 함수를 이용하여 key-value 값을 저장하고 apply() 또는 commit() 함수를 호출하면 변경사항을 저장한다.
val sharedPref = activity?.getSharedPreferences("time", ontext.MODE_PRIVATE) ?: return
// apply() : 동기적으로 저장
// commit() : 비동기적으로 저장
with (sharedPref.edit()) {
putString("alarm", "18:52")
putBoolean("onOff", false)
putInt("intin", 4)
apply()
}
→ 공유 환경설정에서 읽기
val sharedPref = activity?.getPreferences(Context.MODE_PRIVATE) ?: return
val alarm = sharedPref.getString("alarm", "") // getString(key, defaultValue)
val onOff = sharedPref.getBoolean("onOff", false) // getBoolean(key, defaultValue)
val initin = sharedPref.getInt("intin", 1) // getInt(key, defaultValue)
→ 예시
val sharedPref = activity?.getSharedPreferences("time", ontext.MODE_PRIVATE) ?: return
// apply() : 동기적으로 저장
// commit() : 비동기적으로 저장
with (sharedPref.edit()) {
putString("alarm", "18:52")
putBoolean("onOff", false)
apply()
}
실제 파일에 표시되는 모양
728x90
'안드로이드' 카테고리의 다른 글
[안드로이드] 현재 시간 가져오기 (0) | 2022.05.26 |
---|---|
[안드로이드] BroadCast Receiver (0) | 2022.05.21 |
[안드로이드] 네이버 지도 API - 카메라 (0) | 2022.05.15 |
[안드로이드] 네이버 지도 API - 위치와 오버레이 사용하기 (0) | 2022.05.15 |
[안드로이드] 네이버 지도 API - 지도 모양 설정 (0) | 2022.05.13 |