Android development patterns [closed] - java

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.

Related

how to design custom material design views in android? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am developing an Android App. I am new to Android Material Design. Can anyone give me any lead on how to design custom material design views ?
There are no proper design templates available in Android sdk. Tough you can try to explore them as some of them includes a few material design functionality. But if you want to develop your whole project with Material Design views then you can check out this library. You will get all the material design views here.Material Design Library

Which Design Pattern is good for Android application development [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 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.

Is there any other pattern other than MVP and MVC? [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 9 years ago.
Improve this question
MVP and MVC are mostly used patterns in Java and other languages. Is there any other list of patterns working like MVC and MVP?
Well I cant speak for Java but with big iOS projects (often using Core Data) you normally expand the MVC pattern to MVCS (Model-View-Controller-Store). The Store is responsible for fetching data provided by external sources and providing data to controllers. You do this to not mess up your controllers in such projects.
But for normal projects MVC is your way to go.

Desktop application "internal urls" [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 9 years ago.
Improve this question
For web applications internal navigation, you usually use URLs, with an URL router/dispatcher.
Is there some equivalent pattern/analogy within a desktop app being really navigation intensive/with multiple views?
Let's say I'm in myapp://view1/subview1?state=someState and I then switch in myapp://view2/subview2/, by deconstructing it in the main controller, which decodes the first part, switches the view to view2, then calls the view2 controller with "/subview2", which itself loads "subview2", etc.
I find it to be a really KISS (keep it simple stupid) abstraction for handling "navigation" state.
Would this "pattern" be practical or an awful idea?
What would be the general plan to implement it in Java? (use URIs? URLs? Strings?)
Application Controller pattern might be a good place to start.

Co- browsing implementation in java [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 9 years ago.
Improve this question
Co-Browsing in the context of web browsing, is the joint navigation through the Internet by two or more people accessing the same web pages at the same time.
for more information please have a look at http://en.wikipedia.org/wiki/Cobrowsing
here are some paid alternatives which does this
http://www.livelook.com/co_browsing.asp
http://www.unblu.com/
any help regarding what technology is being used to implement this or technical specifications ?
i am trying to implement co-browsing using java, has any one have prior experience with that if its possible or any existing java library doing the same?
if there is not any solution what approach should i use to implement this.

Categories