目前因为Controller(Activity)和View,Model没有实现解耦,造成Activity既要负责处理业务逻辑,又要负责UI显示,数据绑定,所以逻辑不清楚,对代码的可读性,可维护性不是很好,所以采用一些分层模式,可以更为有效的对业务逻辑层,UI显示层,数据层进行拆分,集中分层模式有:
**甘特图
**流程图
话不多说,直接上图
1.MVC架构图
2.MVP架构图
三个架构
架构类型 | 构造子 |
---|---|
MVP | Model, Presenter, View |
MVC | Model, Controller ,View |
MVVM | Model, View ,ViewModel |
3.简要分析区别
话不多说,直接上图
看上图Model和View是不会发生关系的,ViewModel是把View和Model关联起来的加工厂:
MVVM优势总结:
View
和Model
双向绑定,一方的改变都会影响另一方,开发者不用再去手动修改UI的数据。额,互相自动的。findViewById
也不需要butterknife
,不需要拿到具体的View去设置数据绑定监听器等等,这些都可以用DataBinding
完成。是不是很舒服?View
和Model
的双向绑定是支持生命周期检测的,不会担心页面销毁了还有回调发生,这个由lifeCycle
完成。MVC
一样导致Activity
中代码量巨大,也不会像MVP
一样出现大量的View
和Presenter
接口。项目结构更加低耦合。示例项目架构分析
1.MVVM组件化示例项目架构图
2.目录结构:
各模块和彼此之间的关系解释
lib_opensource
:第三方build.gradle
依赖,本项目主要有support、lifecycle、room、fresco、retrofit、okhttp、RxJava、ARouter
这些。lib_coremodel
: 存放MVVM
中的Model
和ViewModel
两个模块,就是数据的处理和数据与UI页面的绑定。依赖lib_opensource
库。lib_common
: 公共库,主要有各种base,各种ui组件,自定义组件,公用的Activity
、公用的Fragment
,和公用的utils
等等。依赖lib_coremodel
库。module_girls
: 子功能模块,可以在library
和application
之间切换,自己可以是一个app也可以成为别的app的一个组件模块。组件化编译时为app,反之为module
。module_news
: 新闻功能模块,可以在library
和application
之间切换,自己可以是一个app也可以成为别的app的一个组件模块。组件化编译时为app
,反之为module
app_universal
: 定制版本的app,组件化编译时module_girls
和module_news
为app,所以不能把这两个作为module加进来编译,所以组件化Android平台上有一些比较好的MVVM框架,其中用的比较多的是RoboBinding,Robobinding。
为了精简框架,RoboBinding移除了大量不必要的代码,比如addXXListener(),findViewById()等。
可以将难以测试的Android代码转换为普通的JUnit测试。
提供对象类型Cursor来替换 - 关系类型Cursor,因为我们已经习惯于操作对象 。
可以很容易的为任何自定义组件,第三方组件或Android widget编写属性绑定实现,简化代码,使项目易于维护
-----------------------------------------Robobiding 简单使用示例:----------------------------------------------
View层(对应android xml文件)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:bind="http://robobinding.org/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="org.robobinding.androidmvvm.MainActivity"
tools:ignore="MissingPrefix">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
bind:text="{hello}"/> //单向绑定,修改Model属性时,会自动反映到视图中(需要实体中提供相应的getHello(),setHello()方法)。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Name:"/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
bind:text="${name}"/> //双向绑定,修改model属性时,会自动反映到视图中;反过来,修改视图内容,也会自动更改Model的相关属性。
</LinearLayout>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Say Hello"
bind:onClick="sayHello"/>
</LinearLayout>
public class PresentationModel implements HasPresentationModelChangeSupport {
private PresentationModelChangeSupport changeSupport;
private String name;
public PresentationModel() {
changeSupport = new PresentationModelChangeSupport(this);
}
public String getHello() {
return name + ": hello Android MVVM(Presentation Model)!";
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name; Log.d("model", "setName(),name: " + name);
}
public void sayHello(){
changeSupport.firePropertyChange("hello");
}
@Override
public PresentationModelChangeSupport getPresentationModelChangeSupport() {
return changeSupport;
}
}
**Controller层: **
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
PresentationModel presentationModel = new PresentationModel();
ViewBinder viewBinder = createViewBinder();
View rootView = viewBinder.inflateAndBind(R.layout.activity_main, presentationModel);//将model和view进行绑定
setContentView(rootView);
}
private ViewBinder createViewBinder() {
BinderFactory reusableBinderFactory = new BinderFactoryBuilder().build();
return reusableBinderFactory.createViewBinder(this);
}
}
作者:曾维和