Which Design Pattern is good for Android application development [closed] - java

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
Design patterns represent the best practices used by experienced object-oriented software developers. Design patterns are solutions to general problems that software developers faced during software development.
There are three basic kinds of design patterns:
1.Structural
2.Creational
3.Behavioral
Different design patterns are there like 1. MVC 2. Singlton 3. Factory method 4. Lazy initialization etc.
I worked on to find out which design pattern is good for Android. Some posts says the android is MVC based and other said no.
So can any one please guide me which design pattern Android support or suitable for android application.

Related

design patterns used by Android components [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
Last time when I was giving an interview the interviewer asked me the question that What are the design patters used by Android components? so I answered it by mentioning design pattern names like MVP, MVC, MVVM, etc so He interrupted me and told that this is the wrong answer and asked me to find out the answer so I googled it but it will show same as I told in the interview room, So anybody know the correct answer, If yes then please help me with this, Any help regarding this is appreciated.
MVP, MVC, MVVM are architectural patterns, not design patterns. I quote an old SO post about the question that you were asked.
Which design patterns are used on Android?

Laravel, Codeigniter or Zend? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I want to develop an ERP application. What is the best framework to use. Am good with Codeigniter and ready to learn a better framework. Plus, the application will be used in a a large organization. I have read many forums but can't end up with a concrete reason why I'd prefer one over the others.Is there an alternative programming language which is not necessarily web based? Any idea will be highly appreciated.
try laravel first as it is modern and has a lot of support. Go on the irc channel and it is a great place. zend will take a lot longer to build and plan.
if you want a proof of concept, you can get it up in a few days in laravel. then you can decide on where you want to take it from there.

Android development patterns [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
is there any general development patterns for android/java such as model-view-controller (MVC) ?
i saw this question :
MVC pattern on Android
There are various pattern used in android frameworks like
Broadcast receiver uses (observer pattern) remoter service invocation uses Proxy pattern) view and view group uses (Composite pattern) Media framework uses (Fascade pattern)
A disucssion is already there here Which design patterns are used on Android?
http://www.androiddesignpatterns.com/
Have a look at those links. It may help you.

Which language has better support for developing GUIs coupled with network programming, Python or Java? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I am looking to develop an application as a personal project. What I have in mind is a network-based application that would entail writing code for a typical client-server architecture using TCP Sockets as well as a heavy use of GUIs.
I believe I have quite a few choices: Swing in Java, PyQt, PyGTK, wxpython and the like in Python.
I was just wondering if anyone could direct me to which language would be better in the above respects.
I would suggest you go for JavaFX. It comes with the JDK and has a lot of good features.
Plus, it can inter-operate with Swing, backwards and forwards. It allows you to use CSS to pretty-paint your UI. t gives you best of both the worlds.

What features do you expect from a Java (Rich) Client Framework? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I'm intending to design (and provide a reference implementation for) a new Swing Rich Client Framework. My job and personal experience covers many project-specific Swing client frameworks as well as the Eclipse RCP, and every one of them had some original and clever concepts, but also drawbacks and rigid realizations.
My plan is to incorporate the best of those concepts and features into a new framework whose core is very open and extendable.
For my must-have-features list, I'm counting on your input and hope you can share some concept pearls & diamonds you've encountered in other frameworks, or features you always wanted to have or have in a better way.
The framework is intended
for very simple to very complex and sophisticated projects
for clients that need full i18n
for richt clients that execute some or all of the non-presentation logic on the server
to be very lightweight
to be easy to learn and use
Thanks in advance for sharing your insights :)
Docking views / windows supporting predefined layouts! I have not found any good, easy to use, stable docking framework for java.

Categories