进阶MVP设计模式之一

书山有路勤为径,学海无涯苦作舟 — 韩愈

写在前面

最近项目的第一阶段收尾了,不是很忙,改改遗留的Bug,搞搞第二阶段的需求,算是缓冲期吧,准时下班,周末双休,如果能一直这样美滋滋就更好了,生活乐无忧。

昨天听成哥吹了一个特别牛逼的MVP架构,通过注解得到Presenter。好牛逼,既然写不出来,那么我就抄一个,哈哈哈哈!

如何实现

请睁大双眼,认真思考,我要开车了...

1.RequestPresenter

既然是通过注解实现MVP,那么一定要写一个注解类。

// 注解的生命周期
@Retention(RetentionPolicy.RUNTIME)
// 注解的使用范围
@Target(ElementType.TYPE)
public @interface RequestPresenter {
    Class<?> presenter();
}
2.BaseView

一个无函数的View接口,需要结合实际需求进行扩展。

public interface BaseView {}
3.BasePresenter

这里的View使用了弱引用,防止内存泄漏。

public abstract class BasePresenter<V extends BaseView> {

    protected Context mContext;

    private WeakReference<V> mView;

    protected void attachView(Context context, V view) {
        mContext = context;
        mView = new WeakReference<>(view);
    }

    protected void detachView() {
        if (mView != null && mView.get() != null) {
            mView.clear();
        }
    }

    protected boolean isAttachView() {
        return mView != null && mView.get() != null;
    }

    protected V getView() {
        return mView == null ? null : mView.get();
    }
}
4.IPresenterFactory

Presenter工厂接口,需要生产Presenter的工厂类来实现,它只有一个函数createPresenter(),它就是创建Presenter的核心,后面会讲到。

public interface IPresenterFactory<V extends BaseView, P extends BasePresenter<V>> {

    P createPresenter();
}
5.PresenterFactoryImpl

Presenter工厂的具体实现类,通过一个静态函数createFactory()返回一个该Presenter工厂实现类,并在该函数中通过注解+反射得到Presenter类名;当外部调用createPresenter()时,就会通过Presenter类名newInstance()一个新的实例返回,Presenter就创建完成了。

public class PresenterFactoryImpl<V extends BaseView, P extends BasePresenter<V>> implements IPresenterFactory<V, P> {

    private Class<P> mPresenter;

    public static <V extends BaseView, P extends BasePresenter<V>>PresenterFactoryImpl createFactory(Class<?> clazz) {
        if (!clazz.isAnnotationPresent(RequestPresenter.class)) {
            throw new RuntimeException("Do not find RequestPresenter");
        }
        RequestPresenter requestPresenter = clazz.getAnnotation(RequestPresenter.class);
        Class<P> pClass = (Class<P>) requestPresenter.presenter();
        return pClass == null ? null : new PresenterFactoryImpl(pClass);
    }

    private PresenterFactoryImpl(Class<P> pClass) {
        mPresenter = pClass;
    }

    @Override
    public P createPresenter() {
        if (mPresenter == null) {
            throw new RuntimeException("Presenter is null");
        }

        P presenter = null;

        try {
            presenter = mPresenter.newInstance();
        } catch (IllegalAccessException e) {
            e.printStackTrace();
        } catch (InstantiationException e) {
            e.printStackTrace();
        }
        return presenter;
    }
6.IPresenterProxy

Presenter代理接口,其中有三个函数,可根据实际需求编写。

public interface IPresenterProxy<V extends BaseView, P extends BasePresenter<V>> {

    void setFactory(IPresenterFactory<V, P> factory);

    IPresenterFactory<V, P> getFactory();

    P getPresenter();
}
7.PresenterProxyImpl

因为Presenter工厂只有createFactory()和createPresenter(),而实际项目中不仅仅满足于createFactory()和createPresenter(),还会有其他的需要;所以使用了一个代理类来满足其他需要,所代理的是Presenter工厂和Presenter,可以进行扩展,比如attachView(),detachView()等。

public class PresenterProxyImpl<V extends BaseView, P extends BasePresenter<V>> implements IPresenterProxy<V, P> {

    private IPresenterFactory<V, P> mFactory;

    private P mPresenter;

    // 通过构造函数传入默认工厂
    public PresenterProxyImpl(IPresenterFactory<V, P> factory) {
        mFactory = factory;
    }

    // 设置工厂(默认工厂不能满足需求可以设置)
    @Override
    public void setFactory(IPresenterFactory<V, P> factory) {
        mFactory = factory;
    }

    // 获取当前工厂
    @Override
    public IPresenterFactory<V, P> getFactory() {
        return mFactory;
    }
    
    // 获取Presenter
    @Override
    public P getPresenter() {
        if (mPresenter != null) {
            return mPresenter;
        }

        if (mFactory != null) {
            mPresenter = mFactory.createPresenter();
        }

        return mPresenter;
    }

    public void attachView(Context context, V view) {
        getPresenter().attachView(context, view);
    }

    public void detachView() {
        getPresenter().detachView();
    }
}

8.BaseActivity

因为有了Presenter代理类,BaseActivity只需要关注Presenter代理类就可以了,无需关注Presenter工厂和Presenter等。

public abstract class BaseActivity<V extends BaseView, P extends BasePresenter<V>> extends AppCompatActivity
        implements IPresenterProxy<V, P> {

    private PresenterProxyImpl<V, P> mPresenterProxy;

    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(getLayoutId());
        getWindow().getDecorView().post(new Runnable() {
            @Override
            public void run() {
                initPresenterProxy();
                initView();
                initData();
            }
        });
    }

    // 初始化Presenter代理类
    private void initPresenterProxy() {
        mPresenterProxy = new PresenterProxyImpl<>(PresenterFactoryImpl.<V, P>createFactory(getClass()));
        mPresenterProxy.attachView(this, (V) this);
    }

    @Override
    public void setFactory(IPresenterFactory<V, P> factory) {
        mPresenterProxy.setFactory(factory);
    }

    @Override
    public IPresenterFactory<V, P> getFactory() {
        return mPresenterProxy.getFactory();
    }

    @Override
    public P getPresenter() {
        return mPresenterProxy.getPresenter();
    }

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

    protected abstract int getLayoutId();

    protected abstract void initView();

    protected abstract void initData();
}

以上就是通过注解P来实现与Activity/Fragment绑定的全部核心代码,代码量不是很多,不过仔细研究会很有意思的。

  • BaseActivity在onCreate时会去创建Presenter代理类,而Presenter代理类的构造函数传入的参数是通过Presenter工厂类createFactory()返回新的Presenter工厂实现类。
  • createFactory()传入的参数是Activity/Fragment类,通过注解+反射得到注解类名。
  • 当Presenter代理类的getPresenter()被调用时,若还没有Presenter,就会执行Presenter工厂类的createPresenter(),通过注解类名创建一个新的Presenter返回给Presenter代理类,Presenter代理类就会一直使用这个Presenter来进行代理。
  • Presenter代理类有一个默认Presenter工厂类,当默认Presenter工厂类满足不了需求时,可以重新设置Presenter工厂类。

如何使用

下面我来写一个简单的小Demo介绍一下该如何使用这套MVP

1.编写MVP的Model
public class LoginModel {

    private static final String USERNAME = "12345";
    private static final String PASSWORD = "67890";

    public boolean isLoginSuccess(String username, String password) {
        if (USERNAME.equals(username) && PASSWORD.equals(password)) {
            return true;
        }
        return false;
    }
}
2. 编写MVP的View
public interface ILoginView extends BaseView {

    void onLoginSuccess();

    void onLoginFail();
}
3.编写MVP的Presenter
public class LoginPresenter extends BasePresenter<ILoginView> {

    private LoginModel mLoginModel;

    public LoginPresenter() {
        mLoginModel = new LoginModel();
    }

    public void login(String username, String password) {
        if (!isAttachView()) {
            return;
        }

        boolean isSuccess = mLoginModel.isLoginSuccess(username, password);

        if (isSuccess) {
            getView().onLoginSuccess();
        } else {
            getView().onLoginFail();
        }
    }
4.编写xml布局文件
<android.support.constraint.ConstraintLayout 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"
    tools:context=".MainActivity">

    <android.support.v7.widget.AppCompatEditText
        android:id="@+id/edit_username"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="50dp"
        app:layout_constraintTop_toTopOf="parent" />

    <android.support.v7.widget.AppCompatEditText
        android:id="@+id/edit_password"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        app:layout_constraintTop_toBottomOf="@id/edit_username" />

    <android.support.v7.widget.AppCompatButton
        android:id="@+id/btn_login"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:text="Login"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@id/edit_password" />

</android.support.constraint.ConstraintLayout>
5. 编写MainActivity
@RequestPresenter(presenter = LoginPresenter.class)
public class MainActivity extends BaseActivity<ILoginView, LoginPresenter> implements ILoginView {

    private AppCompatEditText mUsernameEdit;
    private AppCompatEditText mPasswordEdit;
    private AppCompatButton mLoginBtn;

    @Override
    protected int getLayoutId() {
        return R.layout.activity_main;
    }

    @Override
    protected void initView() {
        mUsernameEdit = findViewById(R.id.edit_username);
        mPasswordEdit = findViewById(R.id.edit_password);
        mLoginBtn = findViewById(R.id.btn_login);

        // 点击按钮时执行登录
        mLoginBtn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                String username = mUsernameEdit.getText().toString();
                String password = mPasswordEdit.getText().toString();
                getPresenter().login(username, password);
            }
        });
    }

    @Override
    protected void initData() {

    }

    @Override
    public void onLoginSuccess() {
        Toast.makeText(this, "登录成功!!!", Toast.LENGTH_SHORT).show();
    }

    @Override
    public void onLoginFail() {
        Toast.makeText(this, "登录失败!!!", Toast.LENGTH_SHORT).show();
    }
}

运行效果如下:

Success.png
Fail.png

总结

总体来说,这套MVP设计的很巧妙,通过注解+反射得到Presenter,其中也使用了工厂模式和代理模式,代码量很少,收获却很大。

在学习过程中我发现这套MVP有一个不如意的地方,那就是不能在一个Activity/Fragment中使用多个不同的Presenter,所以将它进行了改良,下一篇文章会详细讲解,未完待续...

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343