Android Basics: Submitted To: Ms. Varsha Sarawagi CS Dept. Submitted By: Akash Raghuvanshi 0905CS091008
Android Basics: Submitted To: Ms. Varsha Sarawagi CS Dept. Submitted By: Akash Raghuvanshi 0905CS091008
Introduction to Android
Open software platform for mobile development A complete stack OS, Middleware, Applications An Open Handset Alliance (OHA) project Powered by Linux operating system Fast application development in Java Open source under the Apache 2 license
Libraries
C/C++ libraries Interface through Java Surface manager Handling UI Windows 2D and 3D graphics Media codecs, SQLite, Browser engine
Android Runtime
Dalvik VM
Dex files Compact and efficient than class files Limited memory and battery power
Core Libraries
Java 5 Std edition Collections, I/O etc
Application Framework
Applications
Activities
Typically correspond to one UI screen But, they can:
Be faceless Be in a floating window Return a value
IntentReceivers
Components that respond to broadcast Intents Way to respond to external notification or alarms Apps can invent and broadcast their own Intent
Intents
Think of Intents as a verb and object; a description of what you want done
E.g. VIEW, CALL, PLAY etc..
System matches Intent with Activity that can best provide the service Activities and IntentReceivers describe what Intents they can service
Services
Faceless components that run in the background
E.g. music player, network download etc
ContentProviders
Enables sharing of data across applications
E.g. address book, photo gallery
Development Tools
Eclipse Android SDK 1.0-2.0
developer.android.com
Devices
Application Lifecycle
Application run in their own processes (VM, PID) Processes are started and stopped as needed to run an application's components Processes may be killed to reclaim resources
Lifecycle
System Process
Home
Home
Browser
Map
Contacts
GMail
XMPP Services
Allows any app to send device-to-device messages to other android users Data Messages are Intents with name/value pairs Works with any gmail account Can also build servers to deliver server-todevice messages