views:

914

answers:

3

Is there any cheat sheet available for Android programming. Most commonly used classes with package description, just like a reference sheet would be nice.

+3  A: 

For a concise list of Android recipes check out Damon Kohler's blog. He covers Intents, Wifi, Notifications, Alerts, Location, SMS, and Sensors in less than four pages.

Tim Kryger
A: 

Check out android development fundementals. The activity lifecycle section describes the methods to override in an activity. Activity lifecycle

Frenkenstain
+1  A: 

Here is a list of common tasks on the android platform, each has an explanation and typically an example.

Tarmon