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
- lifecycle
- hilt
- Coroutine
- recyclerview
- CollapsingToolbarLayout
- DataBinding
- ViewModel
- Algorithm
- Navigation
- AppBarLayout
- kotlin
- onMeasure
- onLayout
- 알림
- CustomView
- LiveData
- CoordinatorLayout
- HTTP
- activity
- View
- Android
- Behavior
- 안드로이드
- 백준
- sqlite
- 알고리즘
- BOJ
- room
- 코틀린
- notification
Archives
- Today
- Total
목록DataBindingUtil (1)
개발일지
Android in A..Z - Databinding (기본)
Databinding Java나 Kotlin으로 View를 업데이트하는 방식이 아닌 XML에서 View를 업데이트 하는 방식이다. View를 업데이트하는 코드를 분리하면서 코드의 간결함과 유지보수성이 좋고 앱의 성능이 향상된다. build.gradle(module) plugins { ... id 'kotlin-kapt' } android { ... buildFeatures { dataBinding = true } } holder_movie 기본적으로 layout안에 data와 view를 넣는다. data안에는 XML에서 사용할 변수를 선언할 수 있다. variable로 변수를 선언하여 name으로 이름을 정하고 type으로 변수의 타입을 정한다. 선언한 변수를 사용하려면 @{}로 변수를 사용한다. 데이터..
Android (안드로이드)/Databinding
2021. 1. 21. 02:43