@2011 Mihail L. Sichitiu1 Android Introduction Platform Overview.

Slides:



Advertisements
Similar presentations
Android Application Development A Tutorial Driven Course.
Advertisements

Google Android Introduction to Mobile Computing. Android is part of the build a better phone process Open Handset Alliance produces Android Comprises.
Introduction.  Professor  Adam Porter 
Mobile Application Development with ANDROID Mobile Application Development with ANDROID d.
What is Android?.
Android architecture overview
Introduction to Android Mohammad A. Gowayyed CS334-Spring 2014.
Android Platform Overview (1)
Android Overview. Android (Google) is a widely anticipated open source operating system for mobile devices, Supporting Bluetooth ( wireless for short.
DEPARTMENT OF COMPUTER ENGINEERING
ANDROID OPERATING SYSTEM Guided By,Presented By, Ajay B.N Somashekar B.T Asst Professor MTech 2 nd Sem (CE)Dept of CS & E.
1 CSCE 4013: Mobile Systems Programming Nilanjan Banerjee Mobile Systems Programming University of Arkansas Fayetteville, AR
Mobile Application Development
Android An open handset alliance project Janice Garcia September 18, 2008 MIS 304.
@2011 Mihail L. Sichitiu1 Android Introduction Platform Overview.
Asst.Prof.Dr.Ahmet Ünveren SPRING Computer Engineering Department Asst.Prof.Dr.Ahmet Ünveren SPRING Computer Engineering Department.
Introduction to Android Platform Overview
@2011 Mihail L. Sichitiu1 Android Introduction Application Fundamentals.
Android Overview Android (Google) is a widely anticipated open source operating system for mobile devices, Supporting Bluetooth ( wireless for short distance)
Emerging Platform#4: Android Bina Ramamurthy.  Android is an Operating system.  Android is an emerging platform for mobile devices.  Initially developed.
Android Introduction Platform Overview.
One day Workshop on "Android Application Development"
Mobile Application Development with ANDROID Tejas Lagvankar UMBC 29 April 2009.
Mobile Application Development with ANDROID. Agenda Mobile Application Development (MAD) Intro to Android platform Platform architecture Application building.
About me Yichuan Wang Android Basics Credit goes to Google and UMBC.
Mobile Application Development using Android
Android Introduction Based on slides made by
Android Programming By Mohsen Biglari Android Programming, Part1: Introduction 1 Part1: Introduction By Mohsen Biglari.
Copyright© Jeffrey Jongko, Ateneo de Manila University Android.
01. Introduction to Android Prof. Oum Saokosal Master of Engineering in Information Systems, South Korea
ANDROID Presented By Mastan Vali.SK. © artesis 2008 | 2 1. Introduction 2. Platform 3. Software development 4. Advantages Main topics.
Android for Java Developers Denver Java Users Group Jan 11, Mike
ANDROID 응용 프로그래밍 과정 – 목차 - 안드로이드란 - 안드로이드가 만들어지게 된배경 - 안드로이드의 철학 - 안드로이드 환경설정 ( SDK download, eclipse plug-in 설정, 간단한 프로그램 실행 ) - 안드로이드 동작원리 - 안드로이드 핵심.
10/10/2015 E.R.Edwards 10/10/2015 Staffordshire University School of Computing Introduction to Android Overview of Android System Android Components Component.
Overview of Android Application Development
ANDROID BY:-AANCHAL MEHTA MNW-880-2K11. Introduction to Android Open software platform for mobile development A complete stack – OS, Middleware, Applications.
Created By. Jainik B Patel Prashant A Goswami Gujarat Vidyapith Computer Department Ahmedabad.
 Installation of Android Development Environment  Creating the App with OpenGL ES API  Running the App on Emulator Android App Development.
1 Android Introduction Platform Overview. 2 What is Android?  Android is a software stack for mobile devices that includes an operating system, middleware.
Mobile Application Development with ANDROID Umang Patel(6537) LDCE.
1 Android Development Lean and mean introduction Based on a presentation by Mihail L. Sichitiu.
By, Rutika R. Channawar. Content Introduction Open Handset Alliance Minimum Hardware Requirements Versions Feature Architecture Advantages Disadvantages.
1 Android Workshop Platform Overview. 2 What is Android?  Android is a software stack for mobile devices that includes an operating system, middleware.
Android operating system N. Sravani M. Tech(CSE) (09251D5804)
By Adam Reimel. Outline Introduction Platform Architecture Future Conclusion.
ANDROID OS Ravi Soni MTech (CS) III Sem. W HAT IS A NDROID ? Android is a software stack for mobile devices that includes an operating system, middleware.
Vijetha Prabhu B & Sushmitha Shenoy. Android is a software stack for mobile devices that includes an operating system, middleware and key applications.
Presented by: Saurabh Kumar Sinha (MRT07UGBIT 186) IT VII Semester, Shobhit University Meerut.
The Basics of Android App Development Sankarshan Mridha Satadal Sengupta.
Android Mobile Application Development
Android Application -Architecture.
Android Application Development 1 6 May 2018
Visit for more Learning Resources
Architecture of Android
ANDROID AN OPEN HANDSET ALLIANCE PROJECT
Android Runtime – Dalvik VM
chapter 6- Android Introduction
ANDROID AND ANDROID PHONES
CASE STUDY 1: Linux and Android
CMPE419 Mobile Application Development
ANDROID AND ANDROID PHONES
Application Fundamentals
Application Development A Tutorial Driven Course
Android Introduction Platform Mihail L. Sichitiu.
Android Platform, Android App Basic Components
Emerging Platform#3 Android & Programming an App
Introduction to Android
Application Fundamentals
Android Overview.
CMPE419 Mobile Application Development
Presentation transcript:

@2011 Mihail L. Sichitiu1 Android Introduction Platform Overview

@2011 Mihail L. Sichitiu2 What is Android?  Android is a software stack for mobile devices that includes an operating system, middleware and key applications.

@2011 Mihail L. Sichitiu3 OHA (Open Handset Alliance)  A business alliance consisting of 47 companies to develop open standards for mobile devices

@2011 Mihail L. Sichitiu4 Market Share (2014 Q2)

@2011 Mihail L. Sichitiu5 Architecture

@2011 Mihail L. Sichitiu6 Android S/W Stack - Application  Android provides a set of core applications: Client SMS Program Calendar Maps Browser Contacts Etc  All applications are written using the Java language.

@2011 Mihail L. Sichitiu7 Android S/W Stack – App Framework  Enabling and simplifying the reuse of components Developers have full access to the same framework APIs used by the core applications. Users are allowed to replace components.

@2011 Mihail L. Sichitiu8 Android S/W Stack – App Framework (Cont)  Features FeatureRole View System Used to build an application, including lists, grids, text boxes, buttons, and embedded web browser Content Provider Enabling applications to access data from other applications or to share their own data Resource Manager Providing access to non-code resources (localized strings, graphics, and layout files) Notification Manager Enabling all applications to display customer alerts in the status bar Activity Manager Managing the lifecycle of applications and providing a common navigation backstack Window Manager Manages the windows comprising an App.

@2011 Mihail L. Sichitiu9 Android S/W Stack - Libraries  Including a set of C/C++ libraries used by components of the Android system  Exposed to developers through the Android application framework

@2011 Mihail L. Sichitiu10 Android S/W Stack - Runtime  Core Libraries Providing most of the functionality available in the core libraries of the Java language APIs  Data Structures  Utilities  File Access  Network Access  Graphics  Etc

@2011 Mihail L. Sichitiu11 Android S/W Stack – Runtime (Cont)  Dalvik Virtual Machine Providing environment on which every Android application runs  Each Android application runs in its own process, with its own instance of the Dalvik VM.  Dalvik has been written such that a device can run multiple VMs efficiently.  Unlike java VM, Dalvik is designed for resource- constrained environments

@2011 Mihail L. Sichitiu12 Android S/W Stack – Runtime (Cont)  Dalvik Virtual Machine (Cont) Executing the Dalvik Executable (.dex) format .dex format is optimized for minimal memory footprint.  Compilation

@2011 Mihail L. Sichitiu13 Android S/W Stack – Runtime (Cont)  Android Runtime (ART) ART is a new Android runtime being introduced experimentally in the 4.4 release.  Ahead-of-time (AOT) compilation  Improved garbage collection  Development and debugging improvements

@2011 Mihail L. Sichitiu14 Android S/W Stack – Linux Kernel Providing an abstraction layer between the H/W and the rest of the S/W stack Relying on Linux Kernel for core system services Memory and Process Management and Threading Network Stack File & Network IO Driver Model Security

@2011 Mihail L. Sichitiu15 Android S/W Stack – Linux Kernel Linux Kernel – Android Specific Components Power Management Android Shared Memory Low Memory Killer Interprocess Communication

@2011 Mihail L. Sichitiu16 Application Fundamentals

@2011 Mihail L. Sichitiu17 Applications  Written in Java (it’s possible to write native code – will not cover that here)  Good separation (and corresponding security) from other applications: Each application runs in its own process Each process has its own separate VM Each application is assigned a unique Linux user ID – by default files of that application are only visible to that application (can be explicitly exported)

@2011 Mihail L. Sichitiu18 Application Components  Activities – visual user interface focused on a single thing a user can do  Services – no visual interface – they run in the background  Broadcast Receivers – receive and react to broadcast announcements  Content Providers – allow data exchange between applications

@2011 Mihail L. Sichitiu19 Activities  Basic component of most applications  Most applications have several activities that start each other as needed  Each is implemented as a subclass of the base Activity class

@2011 Mihail L. Sichitiu20 Activity Lifecycle

@2011 Mihail L. Sichitiu21 Services  Does not have a visual interface  Runs in the background indefinitely  Examples Network Downloads Playing Music TCP/UDP Server  You can bind to a an existing service and control its operation

@2011 Mihail L. Sichitiu22 Broadcast Receivers  Receive and react to broadcast announcements  Extend the class BroadcastReceiver  Examples of broadcasts: Low battery, power connected, shutdown, timezone changed, etc. Other applications can initiate broadcasts

@2011 Mihail L. Sichitiu23 Content Providers  Makes some of the application data available to other applications  It’s the only way to transfer data between applications in Android (no shared files, shared memory, pipes, etc.)  Extends the class ContentProvider;  Other applications use a ContentResolver object to access the data provided via a ContentProvider

@2011 Mihail L. Sichitiu24 Android Manifest  Its main purpose in life is to declare the components to the system:...

@2011 Mihail L. Sichitiu25 Android ADT – Eclipse IDE

@2011 Mihail L. Sichitiu26 Android Studio - IntelliJ IDE