I believe it is extremely important to start coding as soon as possible, and do several iterations of "learn by reading" and "learn by doing".
The Notepad example in the official documentation is a very good Hello World v2: http://developer.android.com/resources/tutorials/notepad/ind.... Immediately after doing this one, I believe you have to start coding for that application you have in mind right away.
When you learn a bit more, you'll come back and maybe create a custom component instead of that copy-pasted layout piece of XML, or replace that ugly thread by an AsyncTask...
As for the article, I really like the selection of material.
If your new, Eclipse is great to get you jumpstarted; however, I find IntelliJ much faster and reliable then Eclipse. I started Android development with Eclipse and only found IntlliJ later, I have not looked back since.
This is probably the most important piece of advice I would give someone getting started. I run OS X and at least for me Eclipse was a constant source of pain. IntelliJ looks better, runs faster, is more stable, and has all of the important refactorings bound to shortcuts - something you have to do manually for most refactorings in Eclipse, which is a pain because of conflicts.
In my opinion, if you're a newbie just use IntelliJ.
Absolutely agree here. I've ran into some issues occasionally with IntelliJ when reading an Eclipse tutorial and translating Eclipse concepts into IntelliJ concepts (especially around libraries and unit testing), but otherwise, I find IntelliJ much better and would have preferred I had started there.
The Notepad example in the official documentation is a very good Hello World v2: http://developer.android.com/resources/tutorials/notepad/ind.... Immediately after doing this one, I believe you have to start coding for that application you have in mind right away.
When you learn a bit more, you'll come back and maybe create a custom component instead of that copy-pasted layout piece of XML, or replace that ugly thread by an AsyncTask...
As for the article, I really like the selection of material.