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 | 31 |
Tags
- ADB
- 안드로이드스튜디오
- 웹뷰
- 코루틴
- build
- RecyclerView
- GIT
- Github
- 스튜디오
- image
- studio
- 안드로이드 스튜디오
- 코틀린
- 안스
- error
- WebView
- coroutine
- dart
- 깃헙
- Android
- 안드로이드
- MVVM
- 의존성주입
- 레트로핏
- viewpager
- Retrofit
- 에러
- Kotlin
- 유튜브
- Gradle
Archives
- Today
- Total
목록Kotpref (1)
코딩하는 일용직 노동자
Kotpref 를 이용해 SharedPreferences 를 더 쉽게 이용해보자.
SharedPreferences 는 정말 편리한 도구입니다. 아이디, 비밀번호, 이메일, 간단한 설정값 등을 저장하고 꺼내올 수 있습니다. SharedPreferences 를 사용하려면 약간의 코드가 필요합니다. SharedPreferences prefs = getPreferences(context); SharedPreferences.Editor editor = prefs.edit(); editor.putString(key, value); editor.commit(); 때문에 SharedPreferences 를 처리하는 별도의 클래스를 만들어두고 사용하는 경우가 많습니다. Kotpref 는 이런 SharedPreferences 를 간단하고 쉽게 구현할 수있는 라이브러리입니다. https://github...
안드로이드
2020. 5. 2. 17:09