SlideShare a Scribd company logo
Android Development 
www.edureka.co/android-development-certification-course
LIVE On-line Class 
Class Recording in LMS 
24/7 Post Class Support 
Module Wise Quiz 
Project Work on Large Data Base 
Verifiable Certificate 
Slide2 
www.edureka.co/android-development-certification-course 
How it Works?
Slide3 
www.edureka.co/android-development-certification-course 
Andy Rubin, 
Co-Founder Android Inc., 
SVP, Mobile and Digital Content, 
Google Inc. 
“Every day more than 1 millionnew Android devices are activated worldwide.” 
Did You Know?
Slide4 
www.edureka.co/android-development-certification-course 
Android Ecosystem 
App DevHouses 
Freelancers 
OEMs 
Consumers
Slide5 
www.edureka.co/android-development-certification-course 
App Monetization
Slide6 
www.edureka.co/android-development-certification-course 
Do You Know? 
What are various Building Blocks of an Android App? 
What is the Lifecycleof an Android App? 
How does a Mobile App handle Hardware Events? 
How does an App run Background Jobs like Network Download, Music Player etc.? 
How doMultiple Apps Access Shared Resources such as Address Book, Photo Gallery etc.?
Slide7 
www.edureka.co/android-development-certification-course 
Introduction to Android 
What is Android? 
»Open software platform 
»A complete stack –OS, Middleware, Applications 
»Fast application development using Java 
Note:ThiscoursewilldealwithNativeAndroidApplicationDevelopment
Slide8 
www.edureka.co/android-development-certification-course 
Android Evolution A-K…No B 
1.5 
Cupcake 
1.6 
Donut0 
2.0/2.1 
Eclair 
2.2 
Froyo 
2.3 
Gingerbread 
3.0/3.1 
Honeycomb 
4.0 
Ice-cream Sandwich 
4.1/4.2 
Jelly Bean 
4.4 
Kitkat 
What 
Next!! 
??
Slide9 
www.edureka.co/android-development-certification-course 
Android Evolution A-K…No B (Contd.) 
The relative number of devices running a given version of the Android platform 
Ref: https://developer.android.com/about/dashboards/index.html 
Version 
Codename 
API 
Distribution 
2.2 
Froyo 
8 
0.7% 
2.3.3 - 2.3.7 
Gingerbread 
10 
13.6% 
4.0.3 - 4.0.4 
Ice Cream Sandwich 
15 
10.6% 
4.1.x 
Jelly Bean 
16 
26.5% 
4.2.x 
17 
19.8% 
4.3 
18 
7.9% 
4.4 
Kitkat 
19 
20.9% 
Kitkat 
Froyo 
Gingerbread 
Ice-cream Sandwich 
Jelly Bean
Slide10 
www.edureka.co/android-development-certification-course 
Main Building Blocks -Application 
The components behind any Android App 
Service 
Content Provider 
Broadcast Receiver 
Activity 
Intent
Slide11 
www.edureka.co/android-development-certification-course 
Activity-Typically a Screen 
Login Activity 
News Feed Activity
Slide12 
www.edureka.co/android-development-certification-course 
Activity Lifecycle 
Starting state 
»When an activity doesn’t exist in memory, it is in a starting state 
Running state 
»One that is currently on the screen and interacting with the user 
Paused state 
»When an activity is not in focus (i.e., not interacting with the user) but still visible on the screen 
Stopped state 
»When an activity is not visible, but still in memory 
Destroyed state 
»A destroyed activity is no longer in memory 
(1) OnCreate() 
(2) onStart() 
(3) On RestoreInstanceState() 
(4) onResume() 
(3) onResume() 
(2) onstart() 
(1) onRestart() 
(1) onSaveInstanceState() 
(2) onPause() 
(1) onSaveInstanceState() 
(2) onStop() 
onDestroy() 
or 
<process Killed> 
<process killed> 
onResume() 
Starting 
Running 
Stopped 
Paused 
Destroyed
Slide13 
www.edureka.co/android-development-certification-course 
Intents -Action 
Think of Intents as a verband object 
»A description of what needs to be done 
»Example:VIEW, CALL, PLAY etc.
Slide14 
www.edureka.co/android-development-certification-course 
Intent -Switching Between Activities 
Photo Gallery Activity 
Photo View Activity 
View Photo Intent
Slide15 
www.edureka.co/android-development-certification-course 
Services -Background Jobs 
Service Lifecycle 
Faceless components running in background 
They are of following types: 
»Unbound Service 
»It is a kind of service which runs in the background indefinitely, even if the activity which started this service ends 
»Bound Service 
»It is a kind of service which runs till the lifespan of the activity which started this service 
Example: music player, network download etc. 
(1) onCreate() 
(2) onStart() 
Starting 
Running 
onDestroy() 
or 
<process killed> 
Destroyed
Slide16 
www.edureka.co/android-development-certification-course 
Services -Examples in FB App 
Various Feeds by friends 
Notifications about Friend Requests
Slide17 
www.edureka.co/android-development-certification-course 
Content Providers 
Enables sharing of data across applications 
»Example: address book, photo gallery 
Provide uniform APIs for: 
»Querying 
»Delete 
»Update 
»Insert 
App 
Content 
Provider 
insert() 
update() 
delete() 
query() 
Database
Slide18 
www.edureka.co/android-development-certification-course 
Broadcast Receiver -Dormant Observer 
Broadcast Receiver 
Android System 
Registers for Intents to Observe 
Get Notification when Intents Occurs
Slide19 
www.edureka.co/android-development-certification-course 
Broadcast Receiver -Dormant Observer 
Broadcast Receiver 
Registers for Intents to Observe 
Get Notification when Intents Occurs 
Similarly a notification of a change in TimeZoneis trigerredwith the help of broadcast receiver 
An alarm that wakes or rings the device when the stipulated time is reached, is triggered with the help of broadcast receiver
Slide20 
www.edureka.co/android-development-certification-course 
Recapture -Building Blocks 
Activity –Screen 
»Wall, Login etc. 
Intent –Action 
»Open Picture, Play YouTube Video 
Service -Background Jobs 
»Music Player, Network Download, GPS 
Content Provider –Fetch Data for Applications 
»Contacts, Photo Gallery 
Broadcast Receivers –Dormant Observers 
»Message, Friend Request notification when App in Background
Slide21 
www.edureka.co/android-development-certification-course 
Now, Do You Know? 
What are various Building Blocks of an Android App? 
What is the Lifecycleof an Android App? 
How does a Mobile App handle Hardware Events? 
How does an App run Background Jobs like Network Download, Music Player etc.? 
How do Multiple Apps Access Shared Resources such as Address Book, Photo Gallery etc.?
Slide22 
www.edureka.co/android-development-certification-course 
Job Trends 
Source -http://www.indeed.com/jobtrends?q=android%2Cios&l=&relative=1
Slide23 
www.edureka.co/android-development-certification-course 23 
One of The Most Popular App 
This is one of the most popular app developed by edurekastudent MehvishMushtaq
Slide24 
www.edureka.co/android-development-certification-course 
Few Apps Developed by EdurekaStudents 
PrashantJain 
PNR Enquiry App 
Hisham Muneer 
Black Jack App 
AnubhavGupta 
Reebok Shopping App
Questions 
Slide25 
www.edureka.co/android-development-certification-course
Slide26 
www.edureka.co/android-development-certification-course 
Course Topics 
Module 1 
»Java Essentials for Android 
Module 2 
»Layout & Widgets 
Module 3 
»Communication & Media 
Module 4 
»Web Services 
Module 5 
»Multi Activity Applications 
Module 6 
»Database & Advanced Topics
Introduction to Android Development

More Related Content

PDF
Android development 1july
PDF
Learn How to Animate your Android App
PDF
Using Android 5.0 Lollipop
PDF
Develop Mobile App Using Android Lollipop
PDF
Deep Dive into AngularJS Javascript Framework
PDF
Getting Started With AngularJS
PDF
Animation And Testing In AngularJS
PDF
Webinar on Angular JS titled 'Develop Responsive Single Page Application'
Android development 1july
Learn How to Animate your Android App
Using Android 5.0 Lollipop
Develop Mobile App Using Android Lollipop
Deep Dive into AngularJS Javascript Framework
Getting Started With AngularJS
Animation And Testing In AngularJS
Webinar on Angular JS titled 'Develop Responsive Single Page Application'

What's hot (19)

PPTX
Live Demo : Trending Angular JS Featues
PDF
Webinar: Front End Web Development - Trendy Web Designs Using HTML5
PDF
Webinar: Microsoft .NET Framework : An IntelliSense Way of Web Development
PDF
Angular JS - Develop Responsive Single Page Application
PPTX
Android app development Hybrid approach for beginners
PPTX
Your First Adobe Flash Application for Android
PPT
Making Money with Adobe AIR
PPTX
Developing AIR for Android with Flash Professional CS5
PPTX
Android app development hybrid approach for beginners - Tools Installations ...
PDF
AngularJS : Superheroic JavaScript MVW Framework
PDF
Day In A Life Of A Node.js Developer
PDF
Implementing Web Services In Java
PDF
AngularJS : Superheroic Javascript MVW Framework
PPTX
Developing AIR for Mobile with Flash Professional CS5.5
PPTX
Developing AIR for Android with Flash Professional CS5
PDF
Design Patterns : Solution to Software Design Problems
PDF
Webinar: Microsoft SharePoint-The Ultimate Enterprise Collaboration Platform
PPTX
Mobile Web App development multiplatform using phonegap-cordova
PPTX
Developing Android Apps
Live Demo : Trending Angular JS Featues
Webinar: Front End Web Development - Trendy Web Designs Using HTML5
Webinar: Microsoft .NET Framework : An IntelliSense Way of Web Development
Angular JS - Develop Responsive Single Page Application
Android app development Hybrid approach for beginners
Your First Adobe Flash Application for Android
Making Money with Adobe AIR
Developing AIR for Android with Flash Professional CS5
Android app development hybrid approach for beginners - Tools Installations ...
AngularJS : Superheroic JavaScript MVW Framework
Day In A Life Of A Node.js Developer
Implementing Web Services In Java
AngularJS : Superheroic Javascript MVW Framework
Developing AIR for Mobile with Flash Professional CS5.5
Developing AIR for Android with Flash Professional CS5
Design Patterns : Solution to Software Design Problems
Webinar: Microsoft SharePoint-The Ultimate Enterprise Collaboration Platform
Mobile Web App development multiplatform using phonegap-cordova
Developing Android Apps
Ad

Similar to Introduction to Android Development (20)

PPTX
Android 3rd june
PDF
Working with Advanced Views in Android
PDF
A day in the life of an android developer
PPT
Sogeti - Android tech track presentation - 24 february 2011
PPTX
Android Training in Panchkula
PPTX
Mobile application development for Industrial training
PPTX
Basics of Android
PDF
app development for mobile and web applocations
PDF
First Steps with Android - An Exciting Introduction
PPTX
How to become an android developer
PPTX
OS in mobile devices [Android]
PDF
C maksymchuk android
PPT
Build Mobile Application In Android
PPTX
Firefox OS Presentation
PPT
Case study on Movie Quiz App For IPhone and IPad – Facebook Enabled
PDF
Android - Open Source Bridge 2011
PPT
Android seminar-presentation
PDF
Android development first steps
PPTX
PPT
AndroidOverview
Android 3rd june
Working with Advanced Views in Android
A day in the life of an android developer
Sogeti - Android tech track presentation - 24 february 2011
Android Training in Panchkula
Mobile application development for Industrial training
Basics of Android
app development for mobile and web applocations
First Steps with Android - An Exciting Introduction
How to become an android developer
OS in mobile devices [Android]
C maksymchuk android
Build Mobile Application In Android
Firefox OS Presentation
Case study on Movie Quiz App For IPhone and IPad – Facebook Enabled
Android - Open Source Bridge 2011
Android seminar-presentation
Android development first steps
AndroidOverview
Ad

More from Edureka! (20)

PDF
What to learn during the 21 days Lockdown | Edureka
PDF
Top 10 Dying Programming Languages in 2020 | Edureka
PDF
Top 5 Trending Business Intelligence Tools | Edureka
PDF
Tableau Tutorial for Data Science | Edureka
PDF
Python Programming Tutorial | Edureka
PDF
Top 5 PMP Certifications | Edureka
PDF
Top Maven Interview Questions in 2020 | Edureka
PDF
Linux Mint Tutorial | Edureka
PDF
How to Deploy Java Web App in AWS| Edureka
PDF
Importance of Digital Marketing | Edureka
PDF
RPA in 2020 | Edureka
PDF
Email Notifications in Jenkins | Edureka
PDF
EA Algorithm in Machine Learning | Edureka
PDF
Cognitive AI Tutorial | Edureka
PDF
AWS Cloud Practitioner Tutorial | Edureka
PDF
Blue Prism Top Interview Questions | Edureka
PDF
Big Data on AWS Tutorial | Edureka
PDF
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
PDF
Kubernetes Installation on Ubuntu | Edureka
PDF
Introduction to DevOps | Edureka
What to learn during the 21 days Lockdown | Edureka
Top 10 Dying Programming Languages in 2020 | Edureka
Top 5 Trending Business Intelligence Tools | Edureka
Tableau Tutorial for Data Science | Edureka
Python Programming Tutorial | Edureka
Top 5 PMP Certifications | Edureka
Top Maven Interview Questions in 2020 | Edureka
Linux Mint Tutorial | Edureka
How to Deploy Java Web App in AWS| Edureka
Importance of Digital Marketing | Edureka
RPA in 2020 | Edureka
Email Notifications in Jenkins | Edureka
EA Algorithm in Machine Learning | Edureka
Cognitive AI Tutorial | Edureka
AWS Cloud Practitioner Tutorial | Edureka
Blue Prism Top Interview Questions | Edureka
Big Data on AWS Tutorial | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Kubernetes Installation on Ubuntu | Edureka
Introduction to DevOps | Edureka

Recently uploaded (20)

PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
Microbial disease of the cardiovascular and lymphatic systems
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PDF
Pre independence Education in Inndia.pdf
PDF
Classroom Observation Tools for Teachers
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PPTX
Pharma ospi slides which help in ospi learning
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PDF
Sports Quiz easy sports quiz sports quiz
PPTX
Cell Types and Its function , kingdom of life
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PPTX
master seminar digital applications in india
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Microbial disease of the cardiovascular and lymphatic systems
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
Pre independence Education in Inndia.pdf
Classroom Observation Tools for Teachers
Supply Chain Operations Speaking Notes -ICLT Program
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
Pharma ospi slides which help in ospi learning
Module 4: Burden of Disease Tutorial Slides S2 2025
STATICS OF THE RIGID BODIES Hibbelers.pdf
Sports Quiz easy sports quiz sports quiz
Cell Types and Its function , kingdom of life
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
master seminar digital applications in india
102 student loan defaulters named and shamed – Is someone you know on the list?
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf

Introduction to Android Development