Difference between revisions of "Basic Android"

esse quam videri
Jump to: navigation, search
Line 14: Line 14:
 
*Android NDK
 
*Android NDK
 
**we're not covering this http://developer.android.com/sdk/ndk/index.html
 
**we're not covering this http://developer.android.com/sdk/ndk/index.html
 +
 +
==Basics==
 +
 +
*src folder containg all the source
 +
*res folder containing all the resources
 +
 +
==Resources==
 +
 +
No DPI or PPI Andoid uses dp density independent pixels or sp scale interdependent pixels http://developer.android.com/guide/topics/resources/more-resources.html#Dimension
 +
 +
also see supporting multiple screens http://developer.android.com/guide/practices/screens_support.html
 +
 +
==Activities==
 +
 +
Activity life cycle http://developer.android.com/guide/topics/fundamentals/activities.html#Lifecycle
 +
 +
==Events==
 +
 +
Lots more good reading http://developer.android.com/guide/topics/fundamentals.html
 +
 +
  
 
<html>
 
<html>

Revision as of 01:58, 19 July 2011

Android Basics

Basics

  • src folder containg all the source
  • res folder containing all the resources

Resources

No DPI or PPI Andoid uses dp density independent pixels or sp scale interdependent pixels http://developer.android.com/guide/topics/resources/more-resources.html#Dimension

also see supporting multiple screens http://developer.android.com/guide/practices/screens_support.html

Activities

Activity life cycle http://developer.android.com/guide/topics/fundamentals/activities.html#Lifecycle

Events

Lots more good reading http://developer.android.com/guide/topics/fundamentals.html


This text will be replaced