Top "Mvp" questions

Model View Presenter (MVP) is a derivative of the model-view-controller software pattern, used mostly for building user interfaces.

Does Presenter in Model-View-Presenter create views?

How are Views created in MVP? Does the Presenter always create them (in addition to View in case of subviews)? …

theory mvp architectural-patterns
Android MVP - How to communicate between activity presenter and fragment presenter

I have an activity with 3 fragments, currently I use ViewPager. I want to implement MVP and communicate between activity presenter …

android mvp
What is the difference between controller in MVC pattern and presenter in MVP pattern?

What is the difference between controller in MVC pattern and presenter in MVP pattern? Can you provide links for understanding …

model-view-controller design-patterns mvp
Best practice for package structure in an MVP project

I have an Android Studio project that is using an MVP architecture. What is the advised packages structure for a …

android package mvp
Unit Testing Front End Logic

We have tried to introduce unit testing front end logic on a recent project and the value of the tests …

unit-testing testing tdd agile mvp
Android MVP with RxAndroid + Retrofit

Recently I started reading a lot about MVP and I want to get into practicing my projects with it. However …

android design-patterns mvp rx-java rx-android
Why aren't the MVP and MVVM patterns seen in Ruby, Python, or PHP?

I've been reading about these and they're pretty prominent in the .NET world. Why aren't there any web frameworks that …

design-patterns mvvm mvp
What is your favorite GWT MVP Framework?

What is your favorite GWT MVP Framework, and the reason behind your choice? Mvp4g GWTP GWT 2.1 Built in gwt-mpv …

design-patterns gwt mvp choice gwt-mvp
Confusion around the whole GWT MVP vs Activity and Places

After reading a while and watching Google IO videos, I am still confused on how MVP relates to Activity and …

gwt mvp gwt-places gwt-activities
Is there RxJava equivalent of Handler.postDelayed(Runnable r, long delayMillis)

I am trying to invoke a method that returns void (Java primitive type). I would like to delay the invoking …

java android multithreading rx-java mvp