13
• Android is an open-source software platform created by Google and the Open Handset Alliance. • It is primarily used to power mobile phones. • It has the capability to make inroads in many other (non-phone) embedded application markets. ANDROID

ANDROID- AN OPEN MOBILE SOFTWARE PLATFORM

Embed Size (px)

Citation preview

Page 1: ANDROID- AN OPEN MOBILE SOFTWARE PLATFORM

• Android is an open-source software platformcreated by Google and the Open HandsetAlliance.• It is primarily used to power mobile phones.• It has the capability to make inroads in manyother (non-phone) embedded applicationmarkets.

ANDROID

Page 2: ANDROID- AN OPEN MOBILE SOFTWARE PLATFORM

• Android is a software environment built for mobile devices. • It is not a hardware platform. • Android includes: • Linux kernel-based OS, • a rich UI, • telephone functionality, • end-user applications, • code libraries, • application frameworks, • multimedia support, ... • User applications are built for Android in Java

THE ANDROID PLATFORM

Page 3: ANDROID- AN OPEN MOBILE SOFTWARE PLATFORM

ANDROID COMPONENTS

Page 4: ANDROID- AN OPEN MOBILE SOFTWARE PLATFORM

ANDROID COMPONENT Application framework enabling reuse and replacement of components • Dalvik virtual machine optimized for mobile devices • Integrated browser based on the open source Web Kit engine • Optimized graphics powered by a custom 2D graphics library; 3D

graphics based on the OpenGL ES specification (hardware acceleration optional) • SQLite for structured data storage • Media support for common audio, video, and still image formats

(MPEG4, H.264, MP3, AAC, AMR, JPG, PNG, GIF) • GSM Telephony (hardware dependent) • Bluetooth, EDGE, 3G, and WiFi (hardware dependent) • Camera, GPS, compass, and accelerometer (hardware dependent) • Rich development environment including a device emulator, tools for debugging, memory and performance profiling, and a plugin for the Eclipse IDE

Page 5: ANDROID- AN OPEN MOBILE SOFTWARE PLATFORM

DALVIK VIRTUAL MACHINE • User applications, as well as core

Android applications, are written in Java

programming language and are compiled into byte

codes. • Android byte codes are interpreted at

runtime by a processor known as the Dalvik

virtual machine.

Page 6: ANDROID- AN OPEN MOBILE SOFTWARE PLATFORM

STRUCTURE OF A TYPICALANDROID APPLICATION

Page 7: ANDROID- AN OPEN MOBILE SOFTWARE PLATFORM

An Intent in Android describes what you want to do because they facilitate navigation and represent the most important aspect of Android coding.

• An Intent Filter is a trigger, a declaration of capability and interest in offering assistance to those in need.

• An Intent Filter may be generic or specific with respect to

which Intents it offers to service.

ANDROID INTENT

Page 8: ANDROID- AN OPEN MOBILE SOFTWARE PLATFORM

ANDROID MANIFEST XML FILE • Every application must have an

AndroidManifest.xml file (with precisely that name) in its root directory.

• The manifest presents essential information about the application to the Android system, information the system must have before it can run any of the application's code

e.g.- action, permission, action etc.

Page 9: ANDROID- AN OPEN MOBILE SOFTWARE PLATFORM
Page 10: ANDROID- AN OPEN MOBILE SOFTWARE PLATFORM
Page 11: ANDROID- AN OPEN MOBILE SOFTWARE PLATFORM
Page 12: ANDROID- AN OPEN MOBILE SOFTWARE PLATFORM