Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Robolectric_arm_mvp | 17 | 4 years ago | apache-2.0 | Java | ||||||
对 jessyan mvpArms 框架的进行Robolectric 网络单元测试的解耦,如果用这框架可以看看。 | ||||||||||
Cluon Javascript | 3 | 5 years ago | 1 | mit | C++ | |||||
Minimum viable product (MVP) demonstrating how to communicate between JavaScript and OD4Sessions using libcluon. | ||||||||||
Mvpdemo | 3 | 2 years ago | Roff | |||||||
超简单MVP架构+MMKV+xLog+自动注册路由+自定义注解+自动打包上传蒲公英 | ||||||||||
Common Config | 1 | 3 years ago | Kotlin | |||||||
a common config library, include mvp arm, utils, net(Retrofit + RxJava) ,image load(Glide) and so on. |
此框架旨在解决传统 MVP 类和接口太多,并且 Presenter 和 View 通过接口通信过于繁琐,重用 Presenter 代价太大等问题
Master 分支是一个不含网络层的简易框架,主要通过4个 Demo 介绍本框架的思想,特性以及使用方法,小巧灵活适合已经有一整套现有框架但又需要重构为 MVP 结构的项目,但不管你使用哪个分支都强烈建议你先看看 Master 分支的 Demo
Complete 分支是一个含有网络层的完整框架,将 Retrofit 作为网络层并使用 Dagger2 管理所有对象,成熟强大适合新建的项目
使用之前,请参阅 传统MVP用在项目中是真的方便还是累赘?
此框架是一个轻量级框架,比较适合中小型项目,大型项目请使用 MVPArms
传统MVP每个页面对应一个 Presenter ,而大多数 Presenter 只有一两个方法,这样导致存在大量代码寥寥无几的 Presenter ,此框架旨在解决复用 Presenter 时需要实现过多多余接口方法的问题,鼓励开发者将相近的逻辑写在一个 Presenter 中,不断重用 Presenter ,减少大量类文件
当然很多不同的逻辑都写在一个 Presenter 中,虽然可以少写很多类,但是后面的扩展性肯定不好,所以这个粒度需要自己控制,但是对于外包项目简直是福音
Copyright 2017, jessyan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.