Tips for Android beginners
By Douglas Drumond
A while ago someone asked on Quora how to learn Android development. The person had knowledge of Java, but none of XML. I suppose the fear of XML came from the fact that is well known that Android uses a lot of XML. I started with a quick clarification on XML syntax and that’s the only required knowledge of XML. The parsing is done automatically by the Android system or the build tools. Unless, of course, the person is writing a XML parser or using one (e.g., parsing a response from a server).
Here is my answer:
If you’re afraid of XML because layouts and resources are specified in XML in Android, here’s everything you need to know:
- Syntax is a lot similar to HTML.
- Everything is case-sensitive:
<application>
is different from<Application>
, so pay attention (most of Android tags are camel cased, but<fragment>
is all lower, for example). - Attributes must be quoted
<⋯ android:background="#FFFFFF">
and not<⋯ android:background=#FFFFFF>
- Tags can’t be interleaved:
<aaa><bbb></bbb></aaa>
is valid,<aaa><bbb></aaa></bbb>
is not. - Tags must be closed:
<aaa>
needs</aaa>
- or it must be single tag:
<aaa />
- Namespaces in attributes come before colon:
<⋯ android:id="⋯">
(this is using attribute id from android namespace
Of course, if you’re developing a parser, or you’re writing XML extensively, you need a lot more. This is just to get started in Android. Now you’re set to go.
There are a lot of books teaching Android. I learned back in 2010 from this book: Professional Android 4 Application Development (although it was Android 2 that time) and also from experimenting on. Some people find this book a little terse, I prefer books like that, that goes straight to the point instead of wasting paper and my time telling a lot of things unrelated or just to make the text dumb proof. Recently I got a copy of Android Programming: The Big Nerd Ranch Guide and it’s nice too. If you manage to finish the book, congratulations.
Later you can read Android Design Patterns: Interaction Design Solutions for Developers for interaction design and Android User Interface Design: Turning Ideas and Sketches Into Beautifully Designed Apps for UI.
But if you don’t want to spend any money, don’t worry. The best source is still Android Developers site. Start here: Getting Started and also read here: Introduction to Android. You need nothing else.
When stuck, Google it. Don’t be the person that asks for help in the forums without searching before. If you’re stuck, look into Android developers group, Stack Overflow, Android developers Google+ community, your local group (for instance, in Brazil we have androidbrasil-dev and Stack Overflow in Portuguese). A note about Stack Overflow: don’t just copy an answer, try to understand it. If you’re still stuck, post your question, but tell which paths you already tried, be polite, patient and write in good English. I’m tired of reading “idk wat to do, app crash, help me” and I can bet most of other readers are tired too.
And, the most useful advice in this answer: practice, practice, practice.
Note: When I wrote this answer on Quora, Android Fundamentals course on Udacity wasn’t available. But I cannot write about Android resources nowadays without recommending it, it’s quite nice.