Introduction to Android

27

description

By : Bobby Jindal

Transcript of Introduction to Android

Page 1: Introduction to Android
Page 2: Introduction to Android

Mobile Application Development (MAD)

Intro to Android platform

Platform architecture

Application building blocks

Development tools

Android Apps.

Page 3: Introduction to Android

Smart Phones◦Internet access anywhere◦Social networking

Millions of mobile users

Open standards

Page 4: 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

Page 5: Introduction to Android

List Of Android Devices

1.5 (Cupcake)

1.6 (Donut)

2.0 / 2.1 (Eclair)

2.2 (Froyo)

2.3 (Gingerbread)

3.0 (Honeycomb Gingerbread)

 ? (Ice Cream)

Page 6: Introduction to Android

Why Android ..? Browsing Multi-notification Endless personalization Market Google integration Open Source Open to carriers

Page 7: Introduction to Android

• Develop technologies that will significantly

lower the cost of developing and distributing mobile devices and services

• Devoted to advancing open standards for mobile devices.

Page 8: Introduction to Android
Page 9: Introduction to Android

• Application framework• Optimized graphics :3D - OpenGL ES

1.0• SQLite - for data storage• Web Kit - Integrated web browser• Dalvik - Java Virtual Machine• Connectivity - Bluetooth, Wi-Fi, GPS • Media support• GSM Telephony• Rich development environment

Page 10: Introduction to Android
Page 11: Introduction to Android

• Email client, SMS program, calendar, maps(googles), browser, contacts, and others.

• written using the Java programming language.

• Can replace built in apps.

Page 12: Introduction to Android

Views such as lists, grids, text boxes, buttons, and even an embeddable web browser

Content Providers that enable applications to access data from other applications (such as Contacts), or to share their own data

A Resource Manager, providing access to non-code resources such as localized strings, graphics, and layout files

A Notification Manager that enables all apps to display custom alerts in the status bar

An Activity Manager that manages the life cycle of applications and provides a common navigation backstack

Page 13: Introduction to Android

Android SDK provides the tools and APIs necessary to begin developing applications on the Android platform using the Java programming language

Download Android SDK Corehttp://code.google.com/android/download.html

To Develop with Eclipse IDE, we can add the plugin - Android Development Tools (ADT) https://dl-ssl.google.com/android/eclipse/

1-13

Page 14: Introduction to Android

Apps can invent and broadcast their own Intent

Think of Intents as a verb and object; a description of what you want doneE.g. VIEW, CALL, PLAY etc..

System matches Intent with Activity that can best provide the service

Page 15: Introduction to Android

GMail

Contacts

Home

Blogger

Chat

Client component makes a request for a specific action

“Pick photo”

Picasa

System picks best component for that action

Blogger

Photo Gallery

Page 16: Introduction to Android

Development requirements 

• Java

• Android SDK

• Eclipse IDE (optional)  

Page 17: Introduction to Android

 

- Easy to customize the Google Android

platform

  - Android is a multi-process system, in which each application (and parts of the system) runs in its own process. Most security between applications and the system is enforced at the process level through standard Linuxfacilities, such as user and group IDs that are assigned to applications.

Page 18: Introduction to Android
Page 19: Introduction to Android
Page 20: Introduction to Android

• How background app interact with users

• Consistent notification presentation

Page 21: Introduction to Android
Page 22: Introduction to Android
Page 23: Introduction to Android
Page 24: Introduction to Android
Page 25: Introduction to Android
Page 26: Introduction to Android
Page 27: Introduction to Android