TheMVP

Project Url: kymjs/TheMVP
Introduction: 怎样从架构级别去搭建一个 APP,怎样让他应对日益更改的界面与业务逻辑?今天为大家讲述一种在 Android 上实现 MVP 模式的方法。
More: Author   ReportBugs   DemoAPK   
Tags:
MVP-

TheMVP 简介

越小的类,bug 越不容易出现,越容易调试,更容易测试,我相信这一点大家是都赞同的。在 MVP 模式下,View 和 Model 是完全分离没有任何直接关联的(比如你在 View 层中完全不需要导 Model 的包,也不应该去关联它们)。
使用 MVP 模式能够更方便的帮助 Activity (或 Fragment )职责分离,减小类体积,使项目结构更加清晰。

或者查看开源实验室中详细介绍:
https://kymjs.com/code/2015/11/09/01/

谁在使用

本项目已被支付宝使用,可查看设置->关于->版权信息。

你也可以提交Pull Request告诉我你的 APP 使用了TheMVP

使用方式

当前最新版本为:

// root build.gradle
allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}

// module build.gradle
dependencies {
    implementation 'com.github.kymjs:themvp:2.0.0'
}

开源协议

 Copyright (C) 2015, 张涛

 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.
Apps
About Me
GitHub: Trinea
Facebook: Dev Tools