Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to implement the Model-View-Controller pattern in Java for Android? Or is it already implemented through Activities? Or is there a better way to implement the MVC pattern for Android?

share|improve this question

14 Answers

up vote 70 down vote accepted

It's already implemented.

  • You define your user interface in various XML files by resolution/hardware etc.
  • You define your resources in various XML files by locale etc.
  • You extend clases like ListActivity, TabActivity and make use of the XML file by inflaters
  • You can create as many classes as you wish for your model
  • A lot of Utils have been already written for you. DatabaseUtils, Html,
share|improve this answer
105  
if you're trying to imply that a static xml file is the view and an activity is a presenter/controller then you're missing the part of MVC/MVP pattern actually decouples the view and presenter. You cannot instantiate an activity without talking to your layout/view. Really what you want to do is use composition and embed the activity/layout into a view class and the have all the application/presentation logic decoupled out into their respective classes. While what you describe is MVC... it's a very bad, strongly coupled MVC. Which is poor to work with. Especially if you wish to unit test. – JDPeckham Apr 14 '11 at 23:20
16  
Android is terrible at MVC. Android's API philosophy is template/inheritance over composition; which makes it bad for testing too. That being said, there are ways to get MVC out of android, but it is not intuitive. – Paul Nikonowicz Dec 13 '11 at 16:57
19  
I'm writing a Android Architecture series which teaches/demonstrates how to implement MVC (and other patterns) in Android. Check it out: therealjoshua.com/2011/11/android-architecture-part-1-intro – user123321 Dec 20 '11 at 3:02
@musselwhizzle - Thanks for taking the time to put this together. I'm a seasoned developer but a total android newbie. Your series helped me translate some of stuff I already knew from other frameworks and patterns to android. Thanks! – Danny Feb 11 '12 at 13:27
26  
This is what Google itself says about MVC in Android: No results found for +mvc site:developer.android.com. – 18446744073709551615 Apr 20 '12 at 9:29
show 3 more comments

There is no universally unique MVC pattern. MVC is a concept rather than a solid programming framework. You can implement your own MVC in any platforms. As long as you stick to the following basic idea, you are implementing MVC:

  • Model: What to render
  • View: How to render
  • Controller: Events, user input

Also think about this way, when you program your model, the model should not need to worry about the rendering (or platform specific code). The model would say to the view, I don't care your rendering is Android or iOS or Windows Phone, this is what I need you to render. The view would only handle the platform specific rendering code.

This is particularly useful when you use Mono to share the model in order to develop cross platform applications.

share|improve this answer
2  
Great answer! Simple but yet point out what is MVC – Anh Tuan Sep 5 '11 at 8:36

Here is MVP. http://jamespeckham.com/Blog/10-11-21/MVP_on_Android.aspx

I know it's not MVC but if you want MVC, just start with 1 single activity and then have the activity use some sort of routing from the view to determine which controller and view pairing to spawn off. A view would need it's own layout and would notify the activity to change layouts. This could mean writing an app with 1 single main activity which I think would have a profound (good) impact on performance since activities seem to be fairly heavy weight.

share|improve this answer
1  
you made my day, that's exactly what i was searching for! – manmal Jul 7 '11 at 16:54

the actions, views and activies in android are the baked in way of working with the android UI and are an implementation of a model-view-viewmodel pattern, which is structurally similar (in the same family as) model view controller.

to the best of my knoweledge, there is no way to break out of this model... it can probably be done, but you would likely lose all the benefit that the existing model has, and have to rewrite your own UI layer to make it work.

share|improve this answer

I wrote an answer to a similar question here: Which design patterns are used on Android?

If anybody should be interested in giving it a read. In summary, I think MVP is a much better fit for Android development.

share|improve this answer

There is no single MVC Pattern you could obey to. MVC just states more or less that you don't should mingle data and view, so that e.g. views are responsible for holding data or classes which are processing data are directly affecting the view.

But nevertheless, the way Android deals with classes and resources, you're sometimes even forced to follow the MVC pattern. More complicated in my oppinion are the activites which are responsible sometimes for the view but nevertheless act as an controller in the same time.

If you define your views and layouts in the xml files, load your resources from the res folder, and if you avoid more or less to mingle this things in your code, then your anyway following a MVC pattern.

share|improve this answer

Android UI creation using layouts, resources, activities and intents is an implementation of the MVC pattern. Please see the following link for more on this - http://www.cs.otago.ac.nz/cosc346/labs/COSC346-lab2.2up.pdf

share|improve this answer

The best resource I found to implement MVC in Android is this post :

I followed the same design for one of my projects and it works great. I am a beginner on android so I can't say that this is the best solution.

I made one modification: I instantiated the model and the controller for each activity in the application class so that these are not recreated when the landscape-portrait mode changes.

share|improve this answer

i think the most useful simplified explanation is here: http://www.cs.otago.ac.nz/cosc346/labs/COSC346-lab2.2up.pdf

from everything else i've seen and read here, implementing all these things makes it harder and does not fit in well with other parts of android.

having an activity implement other listeners is already the standard android way. the most harmless way would be to add the Java Observer like the slides describe and group the onClick and other types of actions into functions that are still in the Activity.

the Android way is that the Activity does both. fighting it doesn't really make extending or doing future coding any easier.

i agree with the 2nd post. it's sort of already implemented. just not the way people are used to. whether or not it's in the same file or not, there is separation already. no need to create extra separation to make it fit other languages and OS's.

share|improve this answer

I agree with JDPeckham, and I believe that XML alone is not sufficient to implement the UI part of an application.

However, if you consider the Activity as part of the view then implementing MVC is quite straightforward. You can override Application (as returned by getApplication() in Activity) and it's here that you can create a controller that survives for the lifetime of your application.

(Alternatively you can use the singleton pattern as suggested by the Application documentation)

share|improve this answer

Android's MVC pattern is (kind-of) implemented with their Adapter classes. They replace a controller with an "adapter." The description for the adapter states:

An Adapter object acts as a bridge between an AdapterView and the underlying data for that view.

I'm just looking into this for an Android application that reads from a database, so I don't know how well it works yet. However, it seems a little like Qt's Model-View-Delegate architecture, which they claim is a step up from a traditional MVC pattern. At least on the PC, Qt's pattern works fairly well.

share|improve this answer

After some searching, the most reasonable answer is the following:

MVC is already implemented in Android as:

  1. View = layout, resources and built-in classes like Button derived from android.view.View.
  2. Controller = Activity
  3. Model = the classes that implement the application logic

(This by the way implies no application domain logic in the activity.)

The most reasonable thing for a small developer is to follow this pattern and not to try to do what Google decided not to do.

PS Note that Activity is sometimes restarted, so it's no place for model data (the easiest way to cause a restart is to omit android:configChanges="keyboardHidden|orientation" from the XML and turn your device).

share|improve this answer

Although this post seems to be old, I'd like to add the following two to inform about the recent development in this area for Android:

android-binding - Providing a framework that enabes the binding of android view widgets to data model. It helps to implement MVC or MVVM patterns in android applications.

roboguice - RoboGuice takes the guesswork out of development. Inject your View, Resource, System Service, or any other object, and let RoboGuice take care of the details.

share|improve this answer

Android MVC Framework http://code.google.com/p/android-mvc

share|improve this answer

protected by Mysticial Mar 30 at 20:31

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.