[Q] I'm a noob- please help! :( - General Questions and Answers

Hi All,
I am a complete ‘noob’ regarding app/program development of any kind.
I want to create a B2C app for android devices, but am well aware that the most efficient route would be to outsource the vast majority of my development, if not ALL of the development, to a veteran developer. With this in mind… How much, and what do you recommend I learn, considering I’ll be outsourcing the vast majority of the development?
PS. I'm not entirely sure the interface that'll be used...
Best!,
Krishan/Tesla

This is a pretty vague question, but the place to start would be learning Java and becoming comfortable with the android SDK or there's even Android Studio out now. I have no idea what your experience is so you might start by picking up a book on android development, taking some college courses, or if you have zero programming experience, you could always try something like http://www.codecademy.com/.
http://developer.android.com/sdk/index.html
http://developer.android.com/sdk/installing/studio.html

Related

beginner at java/android

I know very little when it comes to programming. About the extent of my programming is getting a batch file to read from a list. So where do I start if I want to look into android programming? Should I pick up a beginning java book?
I have an idea for program, so I have a goal.
not sure if books are needed anymore really
soo many sites and forums just about general programming
and also spc about developing java for android
google should be much faster then using a real book
If you are getting started with android, one thing you will need for sure is the SDK, found here.
As far as learning it goes...google has a fairly good introduction on the platform, although I am not sure it is suited for someone new to programming. I can't really help you there, except point you to the google guide if you want to try anyway.
http://developer.android.com/guide/basics/what-is-android.html

Android Development Traiing

Hi Guys,
I have been visiting this site for quite a while, mainly the development forum, but have not really contributed that much due to my lack of knowledge in Android Development.
I want to change this and am interested in taking a course to learn how to develop in the Android OS.
Is anybody aware of any courses I could take that are based solely online (ie, no classroom work needed)? Bearing in mind that I have no real programming knowledge to start with so will need an "A-Z" course. I am based in the UK so UK sites would be preferential.
I have done a Google search but to be honest there are so many different companies out there I was wondering if anyone had any first hand experiences?
Cheers
You can teach yourself, find some textbooks (I won't tell you where) online and start reading, download eclipse and netbeans, do some reading about object-oriented programming and being learning the basics of java, start trying to develop applications in eclipse (you will need to download all of the appropriate SDK's, Java, Android, etc), there are plenty of starter posts called "How to program Android" etc. located on the various android forums on the net- I would suggest just jumping in and reading as much as you can. I did, I'm not a full-fledged developer, but I am now capable of programming applications and understanding source code. I need to get acquainted with GitHub now so I can actually begin working on open-source projects, and I have a ton of learning to do myself, but that will take you a long way from being a noob.
luna_c666 said:
You can teach yourself, find some textbooks (I won't tell you where) online and start reading, download eclipse and netbeans, do some reading about object-oriented programming and being learning the basics of java, start trying to develop applications in eclipse (you will need to download all of the appropriate SDK's, Java, Android, etc), there are plenty of starter posts called "How to program Android" etc. located on the various android forums on the net- I would suggest just jumping in and reading as much as you can. I did, I'm not a full-fledged developer, but I am now capable of programming applications and understanding source code. I need to get acquainted with GitHub now so I can actually begin working on open-source projects, and I have a ton of learning to do myself, but that will take you a long way from being a noob.
Click to expand...
Click to collapse
Thanks for the advice. The problem with me taking it on myself is that...well...I wont do it! I have 9 or 10 Learn Linux books on my shelf and have read maybe three pages out of them.
This is why I was wondering if there was any online courses I could take, which would guide me through step by step from start to finish. I appreciate it may be more expensive this way but I feel it is the best way for me to learn
The toolset for creating Android apps while easy for a programmer to pick up, is probably not the best for first steps in programming IMHO but it can be done.
FWIW On the side of "Java" and "Android" sides, I would suggest picking up a copy of "Java in a nutshell". learning the concept of Model/View/Controller (MVC), and inhaling Google's website on Android development. Each will be useful at some point in your growth.
Sent from my Transformer Prime TF201 using Tapatalk
Spidey01 said:
The toolset for creating Android apps while easy for a programmer to pick up, is probably not the best for first steps in programming IMHO but it can be done.
Click to expand...
Click to collapse
Okay, so what do you think the best start to programming is? I really feel it is something I would love to learn. I realize it will be a big challenge...but I think I am up for it
Go for it!!!
I would recommend getting to know a bit of Java first. The Java Tutorials found on the Oracle website are an excellent place to start. I've been learning to program for Android for the past month or so, it's hard going, but very rewarding.
bendonahue said:
Okay, so what do you think the best start to programming is? I really feel it is something I would love to learn. I realize it will be a big challenge...but I think I am up for it
Click to expand...
Click to collapse
Eh, for years I have debated between Assembly and shell script depending on the goal. Programming languages are only a slice if the craft.
Sent from my Transformer Prime TF201 using Tapatalk

[Q] Android development for newbies

Hi there
I wanted to ask what would be the best way to learn Android development from my background. I have been developing in HTML5 + CSS3 + JavaScript for a few years now, so where would be the best place to start? A wiki, book, tutorial?
I have been looking at some books but I'm not sure that would be the best way. Any help would be appreciated.
I'd start with some basic Java tutorials. Oracle's website has some good ones. Once you'r comfortable with Java, the transition to Android will be a lot easier, as it isn't the most user-friendly API in my opinion.
you can learn from abc, such as abc.. come on ,believe yourself
For Android tutorials themselves, edumobile has some nice ones (just google "edumobile android". They are a bit higher-level, but great once you have the basics down. And of course you can post specific questions here or on Stack Overflow when things don't make sense or you can't find exactly what you're after.
An obvious place to start is with the Android developer tutorials themselves - they have a Hello World example to get you started and familiar with the basis of app development. After that, read a lot, try coding, learn from your mistakes and hone your skills.
Alternatively, if you don't want to learn Java and make Android applications using the standard sdk tools, you could try something like Appcelerator Titanium platform, which allows you to create Android and iOS applications (cross platform) using Javascript, which you know already. It is only a subset of the entire API, but it is the most common stuff (so it might not work if you want to do some complex hardware interaction with NFC or something), and for standard apps should be fine.
TotallyApps said:
I'd start with some basic Java tutorials. Oracle's website has some good ones. Once you'r comfortable with Java, the transition to Android will be a lot easier, as it isn't the most user-friendly API in my opinion.
Click to expand...
Click to collapse
Kremlin987 said:
An obvious place to start is with the Android developer tutorials themselves - they have a Hello World example to get you started and familiar with the basis of app development. After that, read a lot, try coding, learn from your mistakes and hone your skills.
Alternatively, if you don't want to learn Java and make Android applications using the standard sdk tools, you could try something like Appcelerator Titanium platform, which allows you to create Android and iOS applications (cross platform) using Javascript, which you know already. It is only a subset of the entire API, but it is the most common stuff (so it might not work if you want to do some complex hardware interaction with NFC or something), and for standard apps should be fine.
Click to expand...
Click to collapse
Thanks, I'll be sure try Oracle's tutorials. My aunt actually works with Java in her work, so I'll ask her for help maybe. But like any programming language I'll try the Hello World first

[Q] I want to make an app but have no experience...

I'm not entirely sure where I should start. I want to make a camera application which adds an image of an object to a photo being taken. I enjoy flashing ROMs and what not but as far as developing goes I'm clueless. Where should I start? Are there any trustworthy websites that can teach me the basics?
First and foremost requirement is a basic knowledge of JAVA i guess without the knowledge of JAVA its really difficult to develop apps for android....
Next is Android SDK and an IDE... My personal recomendation is Eclipse(with ADT plugin).
There is a wonderful book for android development ..more info www(dot)dummies(dot)com
I guess that book is enough to give a kick start to android development
go to developers.android.com
It is by far the best resource or learning android.
Have you done any programming before? Learning to develop for Android is no different than learning a new programming language. In this case Java.
Start by creating a hello world app. developer(dot)android(dot)com/training/basics/firstapp/index.html
The Internet is definitely your #1 source. The SDK has be used by other people quite thoroughly so even by searching something as specific as "putting an overlay image on a camera picture" will probably yield many result.
Have fun!
but be patient learning programming is really hard for me at least ...im struggling with my first language (python) for 8 months now and i dont have any results...

Nowhere Else to Turn

Hello everyone,
Im very new to this site, just registered a few moments ago. im not a bot, or a troll, so please bare with me if this post is in the incorrect place within the forum, or if some of my questions seem ignorant.... because i am sure they will (haha).
My development background:
0 ... i have none. Lol. In fact, ive barely begun to learn even the basics of source coding. So again, please bare with me on any of my ignorance.
Why I chose XDA forums:
Dealing with various issues on my Android device, i have googled my problems, and often-times found myself here to find the answers. I believe this forum has some of the highest intelligence this genre has to offer. Easily understandable advice put in a way the ignorant like myself can understand, goes a long way to helping others, and i believe i have found that here.
My Current issue:
I am tired of being an employee. I am tired of waking up and going to work to make someone elses dreams come true. At the age of 32 i believe its past the time i make steps to create something I can pass down to my sons. I have also noticed that the world of business has become vastly technological. Apps are needed for everything. So.... i want to know how to make apps. From the very beginning of it all, to the final production stages, and everything in between.
Where do i start?
Can i make one completely from my Android?
Where can i find app blueprints?
Do i need app blueprints?
These are just some examples of questions I have running through my head. I want to be an Andriloid game developer, I believe i could make the next big thing like AngryBirds, but i do not have the mental know-how, on the technological aspect on all of this. If any of you can help me it would be greatly appreciated. I am also open to the idea of a partnership in creating my first app.
Thank you very much for your time everyone.
-M04RT3
Hi there, I'm a relatively recent beginner as well, having churned out only 1 app so far.
In terms of getting started from the ground up, I found the free online tutorial series from TheNewBoston pretty helpful. In particular, you'd want to look at the Java one and the Android Application Development one
Java
https://thenewboston.com/videos.php?cat=31
Android Development (may be using an outdated Android Studio by now, but overall still handy imo)
https://thenewboston.com/videos.php?cat=6
You need to do the Java one first, because you'll be writing Java code to make Android apps.
There are quite a bit of videos, especially for the Android one. You can pick and choose which you need based on the app you have in mind, like if you don't need voice recognition or drawing 3D objects, you can just skip over those.
Good luck!
a_w_li said:
Hi there, I'm a relatively recent beginner as well, having churned out only 1 app so far.
In terms of getting started from the ground up, I found the free online tutorial series from TheNewBoston pretty helpful. In particular, you'd want to look at the Java one and the Android Application Development one
Java
https://thenewboston.com/videos.php?cat=31
Android Development (may be using an outdated Android Studio by now, but overall still handy imo)
https://thenewboston.com/videos.php?cat=6
You need to do the Java one first, because you'll be writing Java code to make Android apps.
There are quite a bit of videos, especially for the Android one. You can pick and choose which you need based on the app you have in mind, like if you don't need voice recognition or drawing 3D objects, you can just skip over those.
Good luck!
Click to expand...
Click to collapse
Brother youre a life saver. These tutorials are awesome for beginners like me. Funny its called "NewBoston" as thats where i live too lol. But again, thanks for this.
Everything starts with Ideation. All mobile app developers follow the design guidelines during the design phase. The best method would be to make your first app relatively simple and to focus on creating something. Next step would be deciding on the wireframe for the app. Choose the IDE (everything needed to develop your apps), programming language and set it. Since you are using Android Studio and Java, you should know the basics of Java. Create and acquire images, build the layout and write the code. Add more functionality specific to your app and do extra polishing by running your app on different devices. Finally, publish your app. Check this article on how to make android app development easy https://www.fingent.com/blog/how-to-make-android-app-development-easy .

Categories

Resources