Notice
Recent Posts
Recent Comments
Link
«   2025/02   »
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
Tags
more
Archives
Today
Total
관리 메뉴

easy-1

안드로이드 MVVM 예제 본문

Android/Java

안드로이드 MVVM 예제

easy-1 2021. 8. 21. 01:34

<개념>

View 와 Model 간, View 와 ViewModel 간의 의존성을 없애 모듈화 하여 효율적으로 개발하기 위함


<적용 방법>

<View>
viewModel.liveData.observe(this, data-> {
	// ...
)};

<ViewModel>
MutableLiveData<Model> liveData = new MutableLiveData<>();

<Model>
public class Model {
	public String a;
}

 

Comments