일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ChromeCustomTab
- requestPermission
- LOG
- ActivityResultContracts
- onResume
- BottomSheetDialog
- notification
- shotcut
- webview
- Plugins
- application
- App Startup
- 403 Error
- circlecrop
- datastore
- notification bar
- onReceivedSslError
- Git
- jsontokotlinclass
- ExifInterface
- navigation component
- itemAnimator
- 이미지 gps
- skipcollapsed
- room
- notification setting
- prettyJson
- kdoc-generator
- Android
- Blinking
- Today
- Total
목록room (2)
Debbi Story
안녕하세요. 안드로이드 SharedPreferences를 찾아보다 로컬 저장소에 값을 저장하는 방법을 정리 해보려합니다. 1. SharedPreferences https://developer.android.com/training/data-storage/shared-preferences?hl=ko 키-값 데이터 저장 | Android 개발자 | Android Developers 저장하려는 키-값 컬렉션이 비교적 작은 경우 SharedPreferences API를 사용해야 합니다. SharedPreferences 객체는 키-값 쌍이 포함된 파일을 가리키며 키-값 쌍을 읽고 쓸 수 있는 간단한 메서드를 제공합 developer.android.com 2. EncryptedSharedPreferences http..
developer.android.com/training/data-storage/room/accessing-data?hl=ko Room DAO를 사용하여 데이터 액세스 | Android 개발자 | Android Developers Room 라이브러리의 일부인 DAO(데이터 액세스 개체)를 사용하여 데이터베이스 테이블을 수정하는 방법 알아보기 developer.android.com Room 데이터베이스에 Insert 했을때 rowId를 반환 받을 수 있는데요. @Insert(onConflict = OnConflictStrategy.REPLACE) suspend fun insertTask(task: TodoEntity): Long return값을 Long 타입으로 해주시면 됩니다. 참고로 onConflict는..