Kotlin
[kotlin] LiveData & DataBinding
LiveData 가 나온뒤로 꽤 많은 시간이 흘렀다. 여러가지 문제점이 발견되었지만 자동으로 ui가 바뀌는 편함은 아직 따라올만한 대체재가 없을거같다. 프론트 프레임워크 vue가 각광받는 이유인듯. ViewModel을 작성해주고 그 안에 MutableLiveData를 선언해준다. class LiveDataModel : ViewModel() { private val _isUpdate = MutableLiveData() val isUpdate : LiveData get() = _isUpdate fun setText(text: Title){ _isUpdate.value = text } } data class Title( var test_one: String? = null, var test_two: String..