tags:

views:

1500

answers:

7

I need to work on my Android development skills. Which blog has the freshest and most walkthroughs, code samples, and tutorials?

+7  A: 

the freshest and most walkthroughs, code samples, and tutorials?

Unfortunately I don't think this is the best approch. Many of these tutorials are a year+ old (when Android was still in its alpha release); a lot has changed in terms of the API and UI conventions.

Included API Samples
I recommend being familiar with 1)simply creating a project and then 2)reviewing all the API samples included in your Android dev install. These samples should be in the \samples\ApiDemos\src\com\example\android\apis folder of your Android install path.

Android Tutorials
About 6 months ago I presented an Android overview at NYU's ITP with a simple hello world tutorial. It details how to get Eclipse and your first app up and running. It can be found here:

Also, we provided an mapping tutorial that demonstrates how to use web services in conjunction with Androids mapping control. Most importantly it shows how to safely makes use of background threads for managing HTTP requests.

AtariPete
Can not agree enough. The outdated tutorials tripped me up a lot when I first started learning.
fiXedd
+3  A: 

You might want to look at the list of blogs at planetandroid.org the list is on the right side.

Fred Grott
+2  A: 

Well at least the "official" Android development blog contains pretty recent entries at http://android-developers.blogspot.com/

Riussi
A: 

Tutorial series for 2D and 3D on droidnova.com - Android Development

WarrenFaith
Depends what you want to develop but if its games I have found droidnova fantastic!
Mark
A: 

You can find a lot of E-Books, University Lectures and Presentations on android development here:http://www.bookuter.com/category/mobile/android-development

Vimal Das
+1  A: 

I am a shameless plug recommending my own blog: http://mindtherobot.com

Ivan
A: 

If you are looking for a comprehensive introductory tutorial for Android development, please check out my own (Game of Life) tutorial: http://www.quesucede.com/page/show/id/conway_game_of_life_android.

Areas covered include (but not limited to): implementing a custom (orthogonal grid) component, a so-called 'game loop,' and the implementation of and the subsequent interaction with a preferences activity.

Brett Kromkamp