MVPDemo.rar
一个MVP的demo,一步一步教你实现MVP模式,从最基础的一步一步封装,内含有通过反射减少重复代码,其中在缩减共同代码是有一线小失误,不想再重新上传了,ProxyImp中 bindPresenter() { // 获得已申请的变量,包括私有的 Field[] fields = this.getClass().getDeclaredFields();改为 Field[] fields = mView.getClass().getDeclaredFields(); .....field.set(this, mInjectPresenter);改为 field.set(mView, mInj
用户评论