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
- LiveData
- kotlin
- Algorithm
- CoordinatorLayout
- Android
- BOJ
- lifecycle
- Behavior
- room
- View
- CollapsingToolbarLayout
- onLayout
- 알림
- 코틀린
- Coroutine
- hilt
- AppBarLayout
- recyclerview
- activity
- onMeasure
- CustomView
- 백준
- 안드로이드
- HTTP
- 알고리즘
- DataBinding
- sqlite
- Navigation
- notification
- ViewModel
Archives
- Today
- Total
목록serializeNulls (1)
개발일지
Kotlin in A..Z - Gson
Gson Json을 Serialize, Deserialize를 돕는 라이브러리입니다. Gson을 통해 Object와 Json을 쉽게 직렬화, 역직렬화 할 수 있고 다양한 옵션을 제공하기 때문에 상황에 맞게 Strategy를 설정할 수 있습니다. Class data class LoginForm( @SerializedName(value = "id", alternate = ["clientId", "userId"]) val id: String? = null, @SerializedName(value = "password", alternate = ["clientPassword", "userPassword"]) val password: String? = null ) data class Profile( val name..
Kotlin (코틀린)
2021. 6. 6. 17:14