Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

are there any good examples or tutorials on how best to structure an android applications anywhere?

am new to java and android and i've built winforms apps using passive and supervising controller variants of model view presenter and model view controller in asp.net but not really seen any examples or code on android that use these sorts of patterns.

how do people structure decent size android apps out there in the wild. are there any best practices or should i be sticking rigidly to official android documentation.

share|improve this question
Ironically, I asked the same question. Check out my answer for the link. – Mohit Deshpande Dec 1 '10 at 0:39
Fair enough about the links to other questions but would still love to see good examples or hear how people actually structure things. – solrevdev Dec 1 '10 at 1:08
Or some links to open source apps that are considered to be really well structured and put together that sort of thing – solrevdev Dec 1 '10 at 1:13
1  
Check my update. There are some helpful videos that should explain what you're wanting. – Mohit Deshpande Dec 1 '10 at 22:28

3 Answers

up vote 7 down vote accepted

Try with the following two examples. I've found them useful in understanding how MVP might apply to Android applications.

http://chicagoandroid.com/forum/topics/mvp-android-perspective

http://www.jamespeckham.com/blog/10-11-21/MVP_on_Android.aspx

share|improve this answer
1  
@Mohit: The mentioned Google IO video is more about User Interaction/ User eXperience design patterns, than (Graphical) User Iterfaces design patterns to which MVP/ MVC belong. – superjos Feb 17 '11 at 0:25
Thanks for the reference! :) – JDPeckham Apr 14 '11 at 0:29
@JDPeckham well, it's a good example that goes to the point, so ... :) – superjos Aug 4 '12 at 10:41

Check out the Android Developers page. There you will find the answers to all of your questions. And MVC is already present in Android. Check out this question. The videos here can explain what you're looking for.

share|improve this answer

This question has already been answered before Look here.

share|improve this answer
1  
This question was for MVC and not MVP. In MPV you have an even more strict seperation from your components then you have in MVC. In MVP you define strict interfaces for the model and for the view. The presenter is then used for interaction between the model and the view. – iuiz Dec 1 '10 at 23:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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