Difference between revisions of "Android Concepts"

From CDOT Wiki
Jump to: navigation, search
(Android Architecture)
(Android Architecture)
Line 14: Line 14:
 
Key principles
 
Key principles
  
1. Linux Kernel - proven driver model, memory and process management, etc. (a core service of a reliable operating system)
+
'''1. Linux Kernel''' - proven driver model, memory and process management, etc. (a core service of a reliable operating system)
  
2. Libraries (written in C/C++)
+
'''2. Libraries''' (written in C/C++)
  
 
{| class="wikitable" border="1"
 
{| class="wikitable" border="1"
Line 36: Line 36:
 
|}
 
|}
  
3. Android Runtime
+
 
 +
'''3. Android Runtime'''
  
 
3.1 Core Libraries written in JAVA such as: utils, collection, i/o, etc.
 
3.1 Core Libraries written in JAVA such as: utils, collection, i/o, etc.
 +
 
3.2 Dalvik Virtual Machine runs '''dex files''' (bytecodes efficient for small processors)
 
3.2 Dalvik Virtual Machine runs '''dex files''' (bytecodes efficient for small processors)
  
4.
+
'''4. Application Framework'''

Revision as of 12:38, 8 March 2011

What is Android

Android is a software product for mobile devices that has three major parts:

  1. operating system
  2. middleware
  3. applications framework

Android Architecture

Here are the major components based on this [source]

System-architecture.jpg

Key principles

1. Linux Kernel - proven driver model, memory and process management, etc. (a core service of a reliable operating system)

2. Libraries (written in C/C++)

Component Responsability
Surface Manager composing drawing surface onto the screen
ES & SGL core of graphics libraries
Media Framework core media: mpeg, mp3, all video formats, etc.
FreeType an engine for rendering fonts
SQLite core of data storage
WebKit an open source web browser engine
SSL security socket layer


3. Android Runtime

3.1 Core Libraries written in JAVA such as: utils, collection, i/o, etc.

3.2 Dalvik Virtual Machine runs dex files (bytecodes efficient for small processors)

4. Application Framework