Table of Contents

Android quick references

Activity

Main Activity

Specified in AndroidManifest.xml which is located at the root of project dir.

Main activity has these in its intent section:

   <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
   </intent-filter>

More about AndroidManifest.xml: http://developer.android.com/guide/topics/manifest/manifest-intro.html

Activity Life cycle

http://developer.android.com/reference/android/app/Activity.html

Resources