Linked Questions
29 questions linked to/from MVC pattern on Android
3
votes
1
answer
7k
views
MVC architecture in Android [duplicate]
Possible Duplicate:
MVC pattern in Android?
I want to follow MVC architecture in Android.
How I can achieve this ?
Thanks.
0
votes
1
answer
19k
views
Implementing MVC architecture in an android application [duplicate]
I wanna implement MVC architecture for an Android application. Is it possible to do so. Or is it implemented by default.
0
votes
1
answer
3k
views
MVC pattern in android? [duplicate]
Possible Duplicate:
MVC pattern in Android?
I'm new to Android, I need to know that, how to create MVC pattern in an Android application?
If any one knows please guide me to right direction.....
2
votes
0
answers
305
views
Android MVC Model [duplicate]
Possible Duplicate:
MVC pattern in Android?
I would like to know if Android follows a MVC architecture. I am currently flowing an MVC model to build an application. The application simply will ...
286
votes
12
answers
164k
views
Which Architecture patterns are used on Android? [closed]
I'm doing a small research of mobile platforms and I would like to know which design patterns are used in Android?
e.g. in iOS Model-view-controller is very widely used together with delegation and ...
209
votes
10
answers
169k
views
Business logic in MVC [closed]
I have 2 questions:
Q1. Where exactly does "business logic" lie in the MVC pattern? I am confused between Model and Controller.
Q2. Is "business logic" the same as "business rules"? If not, what is ...
65
votes
14
answers
65k
views
Android MVVM Design Pattern Examples
I currently do a lot of WPF development and have started creating some basic Android apps. When creating WPF apps I often use MVVM, normally using Prism, and would like to know if there are any ...
28
votes
4
answers
30k
views
android model view presenter/controller examples [closed]
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 ...
9
votes
5
answers
14k
views
Does Android supports MVC (Model View Controller) Structure?
I want to know, If Android Supports MVC (Model View Controller) structure ? If support then
1. What is Controller ?
2.What is Model ? and
3. What is View ?
Please clear me. I have some confusion ...
16
votes
3
answers
12k
views
What is the standard way to organize Android code in project [closed]
I'm new in android, I want to know what is the right way to write a code in an android project or which architecture or model should we use in our project
example n-tire, MVC or other?
14
votes
4
answers
12k
views
What is the role of the Activity class in MVC?
I know there have been quite a few questions about this, however, I'm still struggling to understand what role the Activity class should play when implementing the traditional Model-View-Controller ...
3
votes
4
answers
3k
views
MVC in Android Yes/No? What is the best way to organize an app which communicates with a webservices
I'm starting to learn Android and i would like know the best practice to organize my app.
I'm used to decompose my project in 3parts; Models, Views and Controllers... so in a first case I want to ...
0
votes
2
answers
8k
views
Correct implementation of MVC for Android
Who knows about programming for iOS and data source/delegate paradigm will understand me.
The best practice for implementing custom view in iOS:
Implement MyView class inherited from UIView
MyView ...
9
votes
2
answers
2k
views
Comparing Java swing MVC with Android design pattern
I'm doing a small research on design patterns in various platforms and I have prior experience in programming with Java.
While reading these posts: MVC pattern on Android and MVC architecture in ...
6
votes
4
answers
1k
views
What's the right way to Object Orient an Android Program?
I've watched many tutorials now about how to program for Android - I have even started to create some programs myself. However, I noticed my programs all look like procedural ones, while Java should ...