Beginner Android Developer Blog / Tutorial list - Android Software/Hacking General [Developers Only]

Hi,
I recently started developing Android apps. I had no problems finding tutorials and examples online, I did though find problems in that the source provided would not compile. Maybe they were written for earlier SDK's.
Alot of the tutorials assumed far too much Java knowledge also.
I started writing a blog www.droidapp.co.uk
I try to write everything as simple as possible.
My aim is to help as many people get into Android development as possible. Would anyone like to join me in writing the blog / tutorial list?
Open = Better

eatmold said:
Hi,
I recently started developing Android apps. I had no problems finding tutorials and examples online, I did though find problems in that the source provided would not compile. Maybe they were written for earlier SDK's.
Alot of the tutorials assumed far too much Java knowledge also.
I started writing a blog www.droidapp.co.uk
I try to write everything as simple as possible.
My aim is to help as many people get into Android development as possible. Would anyone like to join me in writing the blog / tutorial list?
Open = Better
Click to expand...
Click to collapse
How did it go with the blog? Looks like it's been few years since you started doing this. I want to do the same, I am just not sure how viable it is. So could you share your experiences?

Related

How to make an app?

I'm putting my theming project aside for now and get onto creating an app that I've always wanted to create that I do not see ANYWHERE in the market, forums, android websites, etc.
I've been reading and reading and reading different threads, instructions, etc. But no clue where to start. I've been reading on App Inventor but realized that it is very limited and I have my high doubts that App Inventor will not be able to achieve what I have in mind to make.
I've got the latest SDK and AVD Manager, JDK, Java, and have been using my emulator to test edited APKs. I'm pretty sure I'll be using my emulator to see how my app progress is coming along and see possible FCs and other issues and correct them as well as adding more to the app to make it even better.
But right now I'm stuck at where to begin here. Right when I was about to create this thread, I was making the name of the Title of this thread and was given threads relating to my title name and saw one thread that was sort of mentioning what I'm asking here.
I read the link provided in that thread ( http://developer.android.com/guide/topics/fundamentals.html ) and got some clues but just not enough to get me started here. I just need that push to get me going and eventually push it out to the market and make some money as a side project and learn from that and possibly make more useful apps. I cannot disclose my ideas here because then someone else (who has experience making apps) could take those ideas from me and go make it.
Is anyone willing to work with me here to get me started? I've helped countless people so it would be nice for a change for someone to help me out here.
There are so much Android development books on the market that I suggest to start with one of them. It's the best way to get some knowledge of the design principles used by the Android development framework.
Another method is to start with some examples found on the web. Just search for Android examples or something like that and you get tons of links
Another method is just to create something, get stuck and try to search for a solution (the most pragmatic method )
Yeah I know. That's why I'm constantly researching. I'm seeing some similarities between Java coding and building scripts in IRC (which I used to do, nothing big, just really small stuff). But my main problem is knowing what exactly are the main tools I need. I've had Eclipse for awhile but never used it. It has a lot of stuff in it and I get lost after a couple executions.
I'm just anxious to get started somewhere and get the momentum rolling for starters.
Could someone point me to a good book/ebook ? There are many out there but I'm sure that are some better than others...
If any french-speaker knows one in Voltaire's language, I'm in too. But English is fine...
DannyBiker said:
Could someone point me to a good book/ebook ? There are many out there but I'm sure that are some better than others...
If any french-speaker knows one in Voltaire's language, I'm in too. But English is fine...
Click to expand...
Click to collapse
Yeah, a good book (english) would be great. Can anyone recommend one?
You don't have to buy books but they do contain a lot more info in one book and would be better to have than trying to scour the internet and pull a bunch of infos together and try to put it together to understand step by step on how to get started and everything else.
Here's a link to a lot of android development books:
http://www.amazon.com/s/ref=nb_sb_s...pment&sprefix=android+application+development
Here's a link to some more info to getting started that is also useful:
http://developer.android.com/guide/basics/what-is-android.html
You may also need to get a Java coding book to help you put codes together properly and understand what each coding does, and tweaking them to work better.
Here's the link to Java coding for Android stuff for beginners:
http://www.amazon.com/s/ref=nb_sb_s...x=java+for+dummies&rh=n:283155,k:android+java
I just bought 2 books for Android application development and looking around for a good Java coding for beginners.
mdonova33 said:
Yeah, a good book (english) would be great. Can anyone recommend one?
Click to expand...
Click to collapse
professional android 2 application development by Reto Meier: http://www.wrox.com/WileyCDA/WroxTi...ication-Development.productCd-0470565527.html
Or, the Busy Coder's guide to android development by Mark L Murphy: http://commonsware.com/Android/
Last one is more written in a "let's get dirty" style. Really like that
TheSwaggeR said:
...
I just bought 2 books for Android application development and looking around for a good Java coding for beginners.
Click to expand...
Click to collapse
I think any java book will do, as long as it covers the principles of object oriented design and the data structures used by Java. You don't need any info about GUI programming in Java because that's all covered by the Android application framework.
The best Java books are the ones written by James Gosling et al, the designers of Java. But that may also be over the top for Android application development. Just some basic Java will do to get you started. The algorithms needed for basic apps aren't that complex.
App Inventor is a great tool to develop your android app. It simplifies the development and the editor is very intuitive.
Check out my blog on App Inventor and AppToMarket and a Workshop
http://Amerkashi.Wordpress.com

[Q] !!! What's the Best Book to learn Android Development for beginners!!!

The subject says most of it really. I'm looking for a book that will teach me to develop for the Android market. A book for beginners. The kind of book with lessons, tasks, examples etc..
I'm a complete novice when it comes to Android Development, I've no understanding of the Java programming language at all and only minimal xml knowledge. However I am very good with computers and learn quick, I've got the time the patience and the motivation + (a Samsung Nexus S & a HTC Desire S).
I know it takes time and practise but its something I really want to learn and have plenty of time on my hands at the moment.
I've done webdesign so understand html, css, online shopping carts etc.. not that that's going to help me a lot.
Maybe I'll need a couple of books one for Java and another for Android please provide your thoughts on this.
Any suggestions maybe with links (if allowed) would be greatly appreciated.
Many thanks in advance.
Marc
aka - NexusCrazy
Though I've no links to books which you could buy..
Android applications are written in Java (J2SE, not a pared-down Java Mobile/Micro (Java ME) as found on many low-end phones) using an open-source J2SE implementation based on Apache Harmony along with tons of Android-specific libraries for things like UI and handy third-party libraries for things like HTTP requests and JSON parsing. That Java code is compiled and then transformed into Android-specific files in a format called .dex, and runs on the phone in a highly optimized VM runtime called Dalvik. Luckily, you’ll almost never have to think about any of those pieces in between writing your code and running it on the phone, since the tools take care of them for you.
You’ll want a recent version (3.4 or 3.5) of the Eclipse IDE (Integrated Development Environment) for J2SE, the Android SDK, and the Eclipse ADT plugin to interface with those tools and provide project templates. Be sure to check out Google’s complete installation instructions for details.
Here are some other links to get you started;
http://www.codeproject.com/KB/android/AndroidGuide.aspx
Android Developers website
Have fun programming,
Senax
I just started out and the android developer site is really awesome. I come here for regular roaming looking for answers.
They have a bunch of "real" tutorials that is a step by step building apps like a picture that you touch and it makes a noise, to this pic call app and etc.
I just started my first CS class and we are using "Java: How To Program" 8th. But I have researched these forums looking for the same question.
The most up to date forums that had recommended books:
Beginning Android, Head First and The Dummies Android Book. Although most of the stuff i read said the android site has pretty much everything you need to know and that books will help with getting to know the basics!
What about roms?
im going through a similar phase in my life with wanting to learn about Android and im downloading the ebooks to my rooted nook color now.. What would be the first few steps in just building a rom... im not interested as much in building programs... but i am a flashaholic.
The best book to learn about android development hasnt been published yet. I geuss thats just because you cant publish XDA Forums xD
Hopefully you're a pro by now, but if not, I picked up "Hello Android" today from Amazon, and it has received a lot of positive reviews.
Sent from my HTC ThunderBolt using XDA App
From my perspective I knew nothing about Java/Android, but I had a couple other programming languages under my belt. Just jumping into tutorials really helped me more than any reading material. Also there are a ton of helpful stackoverflow posts related to android, so if you get stuck a quick google search will usually help you out
Tutorials are best
Books help, but i like tutorials because they are direct information with real cases
unusualbob said:
From my perspective I knew nothing about Java/Android, but I had a couple other programming languages under my belt. Just jumping into tutorials really helped me more than any reading material. Also there are a ton of helpful stackoverflow posts related to android, so if you get stuck a quick google search will usually help you out
Click to expand...
Click to collapse
That's the way i took .
I knew C, SystemC, some bash and C++.
Started with the hello world tutorial and then i just dove in with an idea.
API documentation, StackOverflow and Google eventually got me where i wanted to be.
Then just repeat this process often enough with other ideas and will get comfortable with writing android apps.
But the android sdk is vast and i still find something cool and new everyday.
Also try #android-dev on freenode irc.
I took a couple of courses on C++, Java, and one in C. However, I really get lost when I look at how Android apps are developed. Also has anyone tried mobile development tools?

[Q] Build own custom rom from google sources

Hi,
I am relative new to android development. I am skilled developer mainly in C# with a little experience in writing my own kernel (C, ASM) and some other languages.
I was searching for an android 4 rom for HTC Sensation. I didn't find any and I am very curious about learning how to build my own. I understand that it will not be a small project which will be done tomorrow. I look already through XDA and the web, found a lot informations but got stuck on one point: How can I start to make the compiled images from android source to run on the actual device (in my case HTC Sensation).
Thanks in advance.
EDIT: What happend to the source.android.com documentation? I start watching one video with basic informations on youtube. It seems there was a lot better documentation than now. But it is not anymore up-to-date. Can i find this docs in another place?
I am not able to post the link to the youtube video but you can watch it with: watch?v=1_H4AlQaNa0

Learning to Develop for the Android Platform

I'm a college student, Just finished a C programming, and Intro Java Class, ( i am starting a CSE minor at UCSD which i plan to finish by summer), relatively intelligent, very interested in technology.
What do I need to learn? Are there any books/textbooks anyone could recommend i read or follow to help me learn?
Im interested in developing apps and also custom roms!
I have just set up Eclipse and the Android SDK on my Mac. I know about the tutorials on googles developer site, i am just starting these but it seems like they require so prerequisite knowledge. I notices that the code in the my first app look alot like java. (if it isnt completely java)
Any other ideas or links anyone can share?
Any help/guidance would be greatly appreciated. Thanks!!!
Hi frarredo,
Make the tutorials from android-developers web site is a good start point, and in my opinion, you should use the android-developers web site always as the main reference to build your android applications. However, you have very good references in the internet like Vogela tutorials and others.
My first advice to you is: start reading the android documentation before you start the implementation process. You do not need to read all the documentation and can give a quick read to get a general idea. But, is very important that you understand some basic Android concepts. As you said, the tutorials seem to require some previous knowledge. If you read, it is much easy to understand what you are doing
I know that sometimes this is boring but is really very important.
The android-developers have a very good documentation, so take a look at: developer. android. com/ guide/ components
(I can not post links yet, sorry)
If you want to know more about Android and in the future build custom roms or whatever, I suggest you to read a very good book: Embebed Android from Karim Yaghmour.
Last, but not least, you have all the forums from xda

good java starting tutorial?

Hello everyone.I'm a big fan of android in general and recently I've decide that I wanted to learn android programming in order to make games.However this turned out to be a bigger task than I expected.Not because I thought programming will be easy(I know it's not), but because I really can't find a good tutorial on programming.All tutorials I've found teach you like the HelloWorldApp where it says do this write this but I need the very basics like what do methods do, what does everything In ecplise mean.I have a lets say "limited" or basic knowledge of programming in C.
So if anyone could direct me to a link about the very basics, like syntax etc. I would be really grateful.
Thank you in advance
Anyone?
I learned android programming here http://www.youtube.com/channel/UCHALE0WtcSB1E0dt7IaGqWA. Those are pretty good tutorials with good examples and there are lots of different tutorials (java, android, android engines, etc) on this channel.
Thank you very much!
I'll be sure to check them out.
GugiUF said:
Hello everyone.I'm a big fan of android in general and recently I've decide that I wanted to learn android programming in order to make games.However this turned out to be a bigger task than I expected.Not because I thought programming will be easy(I know it's not), but because I really can't find a good tutorial on programming.All tutorials I've found teach you like the HelloWorldApp where it says do this write this but I need the very basics like what do methods do, what does everything In ecplise mean.I have a lets say "limited" or basic knowledge of programming in C.
So if anyone could direct me to a link about the very basics, like syntax etc. I would be really grateful.
Thank you in advance
Click to expand...
Click to collapse
Go to YouTube and search for mybringback and look at their tutorials.
Sent from my YP-G1 using XDA Free mobile app
obscuresword said:
Go to YouTube and search for mybringback and look at their tutorials.
Sent from my YP-G1 using XDA Free mobile app
Click to expand...
Click to collapse
I've been checking out this tutorials and they've helped me a lot about understanding how stuff works, but the problem is that they seem to be a bit outdated which is my main problem with all the tutorials I've encountered with on the net.Some new stuff is added some things are done different so I'm looking for a tutorial that is updated to this version I'm using, which would be the most recent one.
GugiUF said:
I've been checking out this tutorials and they've helped me a lot about understanding how stuff works, but the problem is that they seem to be a bit outdated which is my main problem with all the tutorials I've encountered with on the net.Some new stuff is added some things are done different so I'm looking for a tutorial that is updated to this version I'm using, which would be the most recent one.
Click to expand...
Click to collapse
To be honest, some stuff you are just going to have to learn on your own. Most tutorials just teach the basic stuff you'll need so that you can build upon it.

Categories

Resources