Top "Mvp" questions

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

Android MVP - Should avoid using R.string references in presenter?

In an attempt to entirely decouple the Android SDK from my presenter classes, I'm trying to figure out the best …

android testing mvp presenter
Failed to create an instance of Service via deferred binding

I have been trying to build a GWT / Google App Engine web app using the mvp4g framework. I keep …

google-app-engine gwt mvp
WPF: MVP vs MVVM

What is the difference between MVP VS MVVM? Why we are using MVP even though we have three layers: business, …

c# wpf mvvm mvp
How to organize controllers/presenters in a large JavaFx 2.0 application?

For a project I've been working on a JavaFX 2.0 desktop application (a keytool UI). The way JavaFx2.0 works (in my …

java model-view-controller controller mvp javafx-2
Shared Element Transitions Between Views (not Activities or Fragments)

Let's say I'm using a view-based approach to develop an Android application like for example described in the following article: …

android android-5.0-lollipop mvp android-transitions
How to control ListView with MVP Pattern for Android

I'm currently developing an android app using MVP Pattern. When I try to develop an Activity, I should use a …

android listview mvp listadapter
How can Dagger 2 be used to inject using multiple components into the same object

So I have an ApplicationComponent for injecting singletons into my fragments and presenters, but I'm trying to create a component …

android mvp dagger-2
In MVP is onClick responsibility of View or Presenter?

In the MVP pattern who is responsible to handle clicks on the UI? E.g. the non-MVP approach would be …

java android mvp
How to Structure a C# WinForms Model-View-Presenter (Passive View) Program?

I am designing a GUI that has the following basic idea (similarly modeled after Visual Studio's basic look-and-feel): File navigation …

c# winforms design-patterns mvp passive-view
Is ASP.net Model View Presenter worth the time?

I'm reading about ASP.net MVP pattern over this weekend and it seem like even the most simple task take …

asp.net asp.net-mvc mvp