I started to poke around in the Android development world.
Bought a book (which I’m liking so far) on Android development “Hello, Android” – part of The Pragmatic Programmers series of books. http://www.pragprog.com/titles/eband/hello-android
When starting out, don’t bother with the Emulator. Although it is easy to get going, it is just way to slow. The going approach is to use a device (which sux) or do what I did, get a VM of Andorid-X86 going and do most of the base development against that – which is fast, easy and portable etc. I’m doing any testing against the emulator (cause you can quickly move to different device types and OSs – including the Samsung Tablet!).
Another tip I just found was that you can’t update the SDK via the Manager if you are running Windows 7 – you’ll probably get the File not found – Access is denied error. This is due to the stupid Windows permissions thing of not letting users full access to Program Files. Anyways, simple solution is to launch with “Run as Administrator” – solved and it works.
Back to coding…

