Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
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.
Try with the following two examples. I've found them useful in understanding how MVP might apply to Android applications.
http://web.archive.org/web/20120524010643/http://chicagoandroid.com/forum/topics/mvp-android-perspective
http://web.archive.org/web/20130525044856/http://jamespeckham.com/Blog/10-11-21/MVP_on_Android.aspx
Also Mosby implements an MVP pattern plus other things, but it is modular enough so that you can use only the MVP part and forget about the rest.
There is also a nice blog post covering the motivations and choices of this library
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.
I created an application to manage my expenses. It is built using MVP pattern. I have explained it in this post.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I have leant basics of java, XML, firebase. I am able to create Instagram like app. But I want to proceed even further by enabling users to chat through the app (only major feature currently missing in my app). I have no idea as to where to start. Can anyone suggest a verified course which could help me learn?
For your further questions, I'm introducing you Google - your best friend, when you have a question and you are looking for the answer.
Some of good resurces (where I don't know where are you with your knowledge):
thenewboston channel (youtube), help me a lot when I started learning Android development, they also provide good tutorials on other languages
Udemy
Coursera also has a lot of good resources
And a good advice, based on my experiences from work: start learning about Hybrid mobile technologies like React native, Ionic, Flutter, etc. because they are also very popular these days and I'm sure they will grow in future.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I apologize if this question is too broad. I am looking to implement the external library Floating Action Button for my Android Studio project, but I am unable to find the documentation for the methods in Java that I should be using to implement its functionality, such as expanding the FAB into several other FABs, as shown in the Screenshot portion of the link.
I have already added the dependency to my gradle and com.github.clans.fab.FloatingActionButton header to my XML layout file.
The reason I am asking is because I've come across several libraries on Github that have minimal descriptions and no documentation. How does someone learn the methods and classes for external libraries like this without them? There must be something I am misunderstanding here.
How does someone learn the methods and classes for external libraries like this without them?
Review the source code of the sample app.
Or, review the source code of the library.
Or, search for com.github.clans.fab on your favorite search engine to see if anyone has a blog post or other sort of article on the library.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am using MireDot for generating documentation for my REST service.
While it is awesome for generating the models and general information on the resources, I don't believe it currently has a way of "nicely" adding concrete example input/output.
That said, I am resorting to pure JavaDoc for writing the Json examples. And it's painful.
Does anybody know of any tool out there that helps write JavaDoc... and in particular makes it easy to insert formatted JSON/etc into it?
This is an old question I posted when I was just experimenting with ways to document an API.
Eventually I switched to Apiary over MireDot, which makes this task trivial. The reason for this transition was mostly to decouple the JavaDoc from the actual API documentation, as I found coupling those two can create a very messy code-base for a sophisticated API that requires a lot of documentation.
Ideally would have built documentation using an all-encompassing API management platform like Mashery or the like, but at the time that was not an option.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Has anyone found/written any tutorials on the official GWT MVP framework that's found in the GWT 2.1 RC?
Google have updated their large scale web application development series with a sample application and extensive documentation that demonstrates their new MVP support in GWT 2.1 (Model/Activity/Views as they call it now)
Not a tutorial but I wrote one sample that one can use as a skeleton.
http://code.google.com/p/hello-goodbye-mvp/
A promising series of tutorials on GWT 2.1 MVP started with this article:
http://www.over-look.com/site/index.php/documentation/techblog/item/gwt-2-1-tutorial-1-mvp-the-model
This blog shows how to use Activities and Places and provides similiraties with Gmail (what is a place and what is an activity). I suggest you to read the different post and the questions and answers from the comments because they are quite enlightening.
web
Try this. Part 2 of that article has a link to a sample project download.
Also, watch this presentation by Ray Ryan. I highly recommend to download a PDF file with slides, because, for whatever reason, the cameraman decided to focus on Ray, instead of code.
Google has tutorial on Official GWT MVP Framework, visit below link to start/view that tutorial:
https://developers.google.com/web-toolkit/articles/mvp-architecture
//Fahim Aslam | Software Engineer
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I need to start developing using this technology servlets/jsp with tomcat. I need to get up to speed fairly quick. What would you recommend to get up there fairly quick? No 900+ pages manuals. A good tutorial (even a video lectures) with lots of examples would be perfect.
Thanks
Check out simple.souther.us
Hanging out at JavaRanch is a good idea
Getting a Head First Servlet and JSP is worth it
J2EE tutorial is good to go too
I would install Tomcat, and look at all of the included examples. Each example shows a different feature or way of using Tomcat. If you start tomcat up with the defaults, you should be able to go straight to http://localhost:8080/examples to view them.
CoreServlets.com has a good tutorial using Tomcat 6.0:
http://www.coreservlets.com/Apache-Tomcat-Tutorial/
or if you prefer a visual approach then check out this video (wchi additionally introduces Eclipse and WTP into the mix - but it's a good practice to use this to develop simple web applications):
http://www.youtube.com/watch?v=-l0CFxdroTE
I think that the following link will answer not almost all but literally all doubts that you have about servlets and give you a nice flow to study them.
this website is most appropriate since it provides examples as well and is more practical based teacher.
enjoy
http://www.roseindia.net/servlets/