3. 간단한 Viewmodel 따라하기
·
안드로이드 jetpack/뷰모델 viewmodel
https://medium.com/androiddevelopers/viewmodels-a-simple-example-ed5ac416317e ViewModels : A Simple Example Introduction medium.com 이 페이지의 예제를 내식대로 따라해 보기로 하자. 데이터 바인딩의 기초와 위의 예제를 합친내용! 1. 환경 구축 build.gradle에 다음과 같이 추가해 준다. android { ... //바인딩을 위함 dataBinding { enabled = true } } dependencies { //라이브사이클 버전 def lifecycle_version = "2.0.0" //Viewmodel and LiveData implementation "androidx.life..