Skip to content

kaedea/android-mvp-pattern

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

##Android MVP Pattern 中文版

This Project offers a simple but clear Android showcase project designed with MVP Pattern (or MVP Framework), which comes to become a more and more important design pattern in Android application project. Besides, MVP used project is easy to changed into MVVM, the future of Android Project.

What is MVP?

Activity and Fragment take most parts of Android Developing jobs.

In traditional Android project, we often write business code and manipulate views directly inside Activity or Fragment. In this case, it is easy to write codes but the Activity or Fragment will become more and more complicated. It takes efforts to read and change. (We usually call this Android standard code style MV Pattern.)

MVP结构

With MVP pattern, the Activity will be just activity, which only does the job of "Find View", "Set Listener" and "React to the LifeCycle". The jobs of UI Logic will be moved to IView, while the jobs of Business Logic will be moved to IPresenter. In this case, the Activity remains very simple and clear, so that it is read-friendly. And since the business logic is written in Presenter, it can be reused in other Activity easily.

By UML, it looks like 简单MVP的UML

Why MVP?

KISS Princeple

"Keep It Stupid Simple". MVP will make the Activity or Fragment much simpler, which means that it is easy to read and change.

Avoid Leak in Background Task

The code of business logic is moved to Presenter. So that all the background tasks (such as HTTP request, File operating) can be written here. We can remove the reference of Activity in Presenter when onDestroy. Since we have separated this tasks from Activity, the Activity will not easily leak when it is onDestroy.

Project Structure

This Project is a sample project used in the following post in my Blog (Android MVP模式 简单易懂的介绍方式). The package structure is as the following table.

Package Description
login Simple MVP usage in Login
loginoptimized Simple MVP usage in Login, avoid Activity leak
outteradapter MVP usage in Adapter
eventbus MVP usage with EventBus
fragments MVP usage in ViewPager

Give MVP a try, tell your friends!

Infomation

About

An android simple but clear sample project for MVP pattern, including mvp usage with eventbus. @deprecated, try google official solution: https://developer.android.com/topic/libraries/architecture/

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages