Android MVP Architecture

The flexibility of Android allows you to design application the way you feel comfortable. It gives developers both significant power to create great apps and issues with the difference in approach. So, the need to use some architecture pattern is obvious.MVP (Model View Presenter) pattern is a derivative from the well known MVC (Model View Controller), which is gaining popularity and importance in the development of Android applications. We set out to determine the main reasons why we can and should use this architectural pattern.

First of all, we need to define the difference from the MVC pattern, and we can show it schematically:

differences between MVP anf MVC

The main differences of MVP from MVC are:

  • View is separated from Model, Presenter is an intermediary between View and Model;
  • easier to create Unit tests;
  • usually, we are able to use several Presenters for complex Views.

Let’s look at each item in details, and highlight its main advantages:

Following one of the main concepts of Clean Architecture, “Divide and rule”, the MVP pattern allows to separate the presentation layer from the logic. In this case the main functions of each element are:

    1. The View. Activity or fragment will be deprived of data processing and just display. For example, a fragment here implements a certain interface with functions:
    2. This process is displayed on the scheme below:

    3. Unit tests coverage. The main advantage is the ability to test each part separately. We can also select the unit testing technology and approach.
      • For the view it is convenient to use Mockito, Robolectric with annotations @Before, @Test, @After. Example:
      • We will test the presenter the same way we tested the model, with a simple JUnit test. However, this time, we will provide a modified view to make sure the presenter is correctly linked to the view.Our presenter will get the view and will receive data from the model to display it in the view.
    4. Independence from the life cycle of the application. A case in point is when we make a request and a user folds an app, or changes the screen’s orientation. Our query is not related to the activity and doesn’t fail, the data can be obtained, and displayed when the view changes the state to inResume() again. Null Activity check is necessary:
    5. Ability to use one presenter by multiple views. When we use the same logic for several screens, e.g. receiving and updating a list of messages, we can use just one presenter containing all the logic for these two views.For example, there is a presenter and 2 fragments of receiving messages:
      • MessageUpdatePresenter;
      • SentMessagesFragment implement MessageUpdatePresenter;
      • DraftsMessagesFragment implement MessageUpdatePresenter;

      In each fragment we implement the interface MessageUpdatePresenter, let it be the method showMessages(List messages).using one presenter by multiple viewsDuring the development of Android application for a major German marketing company, we were challenged to create the architecture of a multifunctional complex app. After discussing this with the team, we settled on using MVP, and it allowed us:

      • to separate business logic from presentation, structurize everything and divide the load;
      • to considerably increase the quality of the product with the help of convenient test coverage, which is much easier and faster to write;
      • to decrease the number of repetitions in the code, since the presenter can be reused.
    6.  

About Redwerk

Redwerk has been in mobile application development business since 2005. For the last thirteen years, we successfully developed many iOS and Android apps that gathered hundred thousands of users all over the world. We provide full-cycle development of mobile apps from idea to launch and guarantee high-quality solutions for our customers.