码迷,mamicode.com
首页 > 移动开发 > 详细

Android设计模式-MVP模式

时间:2016-05-12 19:20:03      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:

一、什么是MVP模式

MVP(Model / View / Presenter)  是从经典的模式MVC演变而来,Presenter代替activity和fragment成为控制器,而activity和fragment专心做View层该做的事。


技术分享

二、MVP的优点

1、模型和视图分离开了,层次更清晰了。


2、Presenter可以重复利用了。


3、如果我们把逻辑放在Presenter中,单元测试更简单了


三、实战

下边是我项目的结构图

技术分享


MVP中parsenter处理完逻辑后通过接口通知View层,我把这些接口都放在aisle包中。下面看一下接口和数据模型中的代码


public interface ICard {
    void onStartLoading();//开始加载

    void onLoading();//加载中

    void onLoadingDone(Card card);//加载成功

}

public class Card {
    public Card(String name, String tel) {
        this.name = name;
        this.tel = tel;
    }

    public String name;
    public String tel;


    public String getName() {
        return name;
    }


    public String getTel() {
        return tel;
    }


    public String toString() {
        return "  name:" + name + "  tel:" + tel;
    }
}




很普通的接口和数据模型,接口用来通知View刷新UI。下面是parsenter中的代码

public class CardParsenter {
    private String TAG = "CardParsenter";
    private ICard iCard;


    public CardParsenter(ICard iCard) {
        this.iCard = iCard;
    }

    public void getCard() {
        iCard.onLoadingDone(new Card("小明", "12345678"));
    }

    public void setCard(Card card) {
        Log.i(TAG, card.toString());
    }


}

parsenter持有一个View层的接口用于实现回传通知,下面是View层代码

public class UserActivity extends AppCompatActivity implements ICard {

    public CardParsenter cardParsenter;
    public EditText nameET, telET;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);
        cardParsenter = new CardParsenter(this);
        nameET = (EditText) findViewById(R.id.nameET);
        telET = (EditText) findViewById(R.id.telET);
    }

    public void click(View view) {
        switch (view.getId()) {
            case R.id.setBT:
                cardParsenter.setCard(new Card(nameET.getText().toString(), telET.getText().toString()));
                break;
            case R.id.getBT:
                cardParsenter.getCard();
                break;
        }
    }


    @Override
    public void onStartLoading() {

    }

    @Override
    public void onLoading() {

    }

    @Override
    public void onLoadingDone(Card card) {
        nameET.setText(card.getName());
        telET.setText(card.getTel());
    }
}

View实现ICard接口,并传给parsenter,通道建立完毕。最后是布局代码

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context=".view.UserActivity"
    tools:showIn="@layout/activity_main">


    <EditText
        android:id="@+id/nameET"
        android:layout_width="250dp"
        android:layout_height="wrap_content"
        android:hint="nameET"
        android:textSize="20sp" />

    <EditText
        android:id="@+id/telET"
        android:layout_width="250dp"
        android:layout_height="wrap_content"
        android:layout_below="@+id/nameET"
        android:hint="tel"
        android:textSize="20sp" />

    <Button
        android:id="@+id/setBT"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/telET"
        android:onClick="click"
        android:text="set"
        android:textSize="20sp" />


    <Button
        android:id="@+id/getBT"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/telET"
        android:layout_toEndOf="@+id/setBT"
        android:onClick="click"
        android:text="get"
        android:textSize="20sp" />

</RelativeLayout>

四、总结

MVC有个缺点就是View层和model层耦合在一起,造成了Activity做控制的同时也做View层的事(比如设置监听,设置动画、初始化控件等...)。MVP在MVC的基础上分离了View层和model层,然后用parsenter控制模型,得到结果后通知View刷新UI,从而避免耦合。



代码地址:http://download.csdn.net/detail/s4336723/9515111

一个MVP模式的框架:https://github.com/sockeqwe/mosby



Android设计模式-MVP模式

标签:

原文地址:http://blog.csdn.net/s4336723/article/details/51351662

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!