Android - MVC转MVP架构

2018-02-13  本文已影响293人  卖火柴的小女孩_f10c

概况

对于(Model View Presenter)架构是从著名的(Model View Controller)架构演变而来的。

MVC

image

LoginActivity.java activity_login.xml 两个文件就可以搞掂一个界面。在Activity文件当中创建btn的登录点击事件,然后进行HttpUtil进行网络请求.直接回调到当前Activity文件。非空判断,逻辑判断,数据回调处理,包括后面回调的数据展示都可以做在一个btn.OnClickListener里面。一个逻辑较多比较繁琐的Activity代码动不动开车可以飙到上千行的代码。之后慢慢你会找这个是那段代码实现的。工作时间会被繁琐 耦合度高的代码困扰。

MVP

image

V LoginActivity(Activity文件)

LoginView(LoginActivity需要界面操作的抽象类)

P LoginPresenter(Activity 需要的操作 抽象)

LoginPresenterImpl(实现类)

M LoginModel(LoginPresenter 需要使用到的 数据请求、网络请求)

LoginModelImpl(实现类)

LoginActivity binding LoginPresenter 当LoginActivity需要登录的时候在btn.OnClickListener 调用Presenter 写好的login方法 Presenter (P层) P层是对Model层进行操作。从Model拿到数据之后,处理数据,将LoginActivity需要用到的数据、需要显示到的效果回调View层当中。

废话不多说,直接上代码

LoginActivity

package view;

import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

import com.hjc.mvpdemo.MainActivity;
import com.hjc.mvpdemo.R;

import base.BaseActivity;
import base.BasePresenter;
import bean.UserBean;
import presenter.LoginPresenterImpl;

/**
 * Moral :
 * Created by 卖火柴的小女孩 on 2018/2/12.
 */

public class LoginActivity extends BaseActivity<LoginView, LoginPresenterImpl> implements LoginView {

    private Context mContext;
    private EditText etUserName;
    private EditText etUserPwd;
    private Button btnLogin;

    @Override
    protected LoginPresenterImpl createPresenter() {
        return new LoginPresenterImpl(this);
    }

    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_login);
        mContext = this;
        initView();
        initEvent();
    }

    private void initView() {
        etUserName = findViewById(R.id.etUserName);
        etUserPwd = findViewById(R.id.etUserPwd);
        btnLogin = findViewById(R.id.btnLogin);
    }

    private void initEvent() {
        btnLogin.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                String userName = etUserName.getText().toString();
                String userPwd = etUserPwd.getText().toString();

                if (isEmpty(userName)) {
                    Toast.makeText(mContext, etUserName.getHint().toString(), Toast.LENGTH_SHORT).show();
                    return;
                }
                if (isEmpty(userPwd)) {
                    Toast.makeText(mContext, etUserPwd.getHint().toString(), Toast.LENGTH_SHORT).show();
                    return;
                }

                mPresenter.onLogin(userName, userPwd);
            }
        });
    }


    @Override
    public void onloginSuccess(UserBean userBean) {
        startActivity(new Intent(mContext, MainActivity.class).putExtra(MainActivity.EXTRAUSERBEASN, userBean));
        LoginActivity.this.finish();
    }

    @Override
    public void onloginFail(String message) {
        Toast.makeText(mContext, message, Toast.LENGTH_SHORT).show();
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        mPresenter.detachView();
    }
}


LoginPresenterImpl


package presenter;

import base.BasePresenter;
import bean.UserBean;
import model.LoginModel;
import model.LoginModelImpl;
import view.LoginView;

/**
 * Moral :
 * Created by 卖火柴的小女孩 on 2018/2/12.
 */

public class LoginPresenterImpl extends BasePresenter<LoginView> implements LoginPresenter {
    private LoginView loginView;
    private LoginModel loginModel;

    public LoginPresenterImpl(LoginView loginView) {
        this.loginView = loginView;
        this.loginModel = new LoginModelImpl();
    }

    @Override
    public void onLogin(String userName, String userPwd) {
        loginModel.login(userName, userPwd, new LoginModel.LoginOnListener() {
            @Override
            public void onSuccess(UserBean userBean) {
                if (isViewAttached())
                    loginView.onloginSuccess(userBean);
            }

            @Override
            public void onFail(String message) {
                if (isViewAttached())
                    loginView.onloginFail(message);
            }
        });
    }
}


LoginModelImpl

package model;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

import bean.UserBean;

/**
 * Moral :
 * Created by 卖火柴的小女孩 on 2018/2/12.
 */

public class LoginModelImpl implements LoginModel {
    List<UserBean> userBeanList = new ArrayList<>(Arrays.asList(new UserBean("zhangsan", "123456")));

    @Override
    public void login(final String userName, String password, final LoginModel.LoginOnListener loginOnListener) {
        /**
         * 此处进行网络请求和回调 可将Result直接返回LoginPresenterImpl处理
         */
        UserBean userBean = new UserBean(userName, password);
        for (UserBean item : userBeanList) {
            if (item.toString().equals(userBean.toString())) {
                loginOnListener.onSuccess(item);
                return;
            }
        }
        loginOnListener.onFail("账号或密码错误");
    }
}


此处献上项目地址 欢迎Clone

https://gitee.com/Son0865/MVPDemo.git

总结:

MVC很明显一个btn的事件可以做完所有的处理。但是我觉得开发一定要面向接口,不能面向实现。其实一开始我也是不太想用MVP 的。因为在小项目当中并没有会有很深刻的体会,反而代码的膨胀性会令你反感,但许多人也是慢慢开始去实行这种开发模式。

上一篇下一篇

猜你喜欢

热点阅读