안드로이드 진급 노트 14:Robobinding(데이터 귀속Presentation Model(MVVM) 모드를 실현한 안드로이드 소스 프레임워크)

3348 단어
1.RoboBinding
Robobinding은 데이터 바인딩Presentation Model(MVVM) 모드를 구현한 안드로이드 오픈 소스 프레임워크입니다.간단한 측면에서 볼 때, 그는addXListener (),findViewById () 와 같은 불필요한 코드를 제거했다. 버퍼 Knife와 같은 InjectView도 필요없다. 왜냐하면 당신의 코드는 일반적으로 이러한 인터페이스 구성 요소 정보에 의존할 필요가 없기 때문이다.다음은 가장 간단한 안드로이드 MVVM을 예로 들 수 있습니다.
(1) layout 레이아웃
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:bind="http://robobinding.org/android">
    <TextView bind:text="{hello}" /> ... <Button android:text="Say Hello" bind:onClick="sayHello"/>
</LinearLayout>

(2)Presentation Model
 1 public class PresentationModel extends AbstractPresentationModel {  2     private String name;  3     public String getHello() {  4         return name + ": hello Android MVVM(Presentation Model)!";  5  }  6  ...  7     public void sayHello() {  8         firePropertyChange("hello");  9  } 10 }

 
(3) Activity는 layout과 대응하는presentation 모델을 연결합니다
1 public class MainActivity extends Activity { 2  @Override 3     protected void onCreate(Bundle savedInstanceState) { 4  ... 5         PresentationModel presentationModel = new PresentationModel(); 6         View rootView = Binders.inflateAndBindWithoutPreInitializingViews(this, R.layout.activity_main, presentationModel); 7  setContentView(rootView); 8  } 9 }

이렇게 layout의 {hello}와PresentationModel.hello 귀속,layout의sayHello와PresenationModel.sayHello 메소드 바인딩.우리는 Layout에서 TextView, Button의 Id를 정의할 필요가 없다. 왜냐하면 우리는 관심이 없고 필요없기 때문이다.우리가 한층 더 관찰할 때, 우리는Presentation 모델이Pure POJO라는 것을 발견했다.소프트웨어계의 태두인 마틴 파울러가 2004년 프레젠테이션 모델(MVVM) 모델을 제시한 이유다.이것은 우리가 익숙한 MVC의 업그레이드로 인터페이스 상태와 논리를 더욱이Presentation 모델에 연결시킨다.
다음과 같은 샘플 프로젝트를 통해 RoboBinding 사용을 학습할 수 있으며 추가 구성 없이 Android Studio를 직접 가져올 수 있습니다.
1. Android MVVM, 가장 작은 Robobinding 사용 예.
2. Album Sample은 Martin Fowler의Presentation Model 모델의 원시적인 예로bobinding의 안드로이드 번역 버전을 바탕으로 한다.
3. 갤러리는 Robobinding의 다양한 특성을 보여주는 데 사용되는 사용으로 Fragment, Menu, ViewPager 등을 포함한다.
 
프로젝트의 중국어 문서 주소:http://robobinding.github.io/RoboBinding/index.zh.html
github 주소https://github.com/RoboBinding/RoboBinding

좋은 웹페이지 즐겨찾기