SlideShare a Scribd company logo
Agenda
● Introduction
● Android Components overview
● Sample Application
● Android Software Stack
● Android Components detailed
– Activity, Service, Provider, Receiver
History of Android
• Android, Inc. – 2003
• Operating system for digital cameras
• Google Acquisition – 2005
• Open Handset Alliance – Nov 2007
–  Google, HTC, Sony and Samsung
– Qualcomm and Texas Instruments
•  HTC Dream - October 22, 2008
Android Application Components
Application Components
• Application components are the essential
building blocks of an Android
application.
Application components
● Activity
● Service
● Broadcast Receiver
● Content Provider
Application components
Activities
• An activity represents a single screen
with a user interface
• Example of Activities in Email app
– Email List
– Compose
– Read
Activities
Services
• A service is a component that runs in the
background
• A service does not provide a user
interface.
• Example : Music Player, Downloader
Services
Content Provider
• Content provider
– Allows to share data with other apps
•
Content Provider
Content Provider
Broadcast Receiver
●
Listener of System wide events.
●
Examples
– SMS received , Wifi / Bluetooth connected
– Battery Low, Device Rebooted
●
No UI
●
Lightweight ( < 10 seconds )
Intents
IntentsIntents
Intents are messages across components.
Like Hyperlinks on
the web
Intents
● Support interaction between components
– e.g. Start a new Activity
– Broadcast messages
● Intents : request for action to be performed
17
Types of Intents
MyApp
Activity1 Service1Intent ( myService.class )
OtherAppMyApp
Activity1 Activity2
Explicit Intent
Implicit IntentIntent ( “ACTION” )
Intents
Intents
start new Activity
● Dial a number
Intent intent = new Intent(Intent.ACTION_DIAL,
Uri.parse(“tel:97412345”));
● Launch a website
Intent intent = new Intent(Intent.ACTION_VIEW,
Uri.parse(“http://www.google.com”));
Intents
start new Activity
● Launch another activity
Intent i = new Intent(this, SecondActivity.class)
startActivity(i)
Intent Filter
● Registers components as capable of receiving
Intents
● Matches intents to the component (Activity ,
Service, Receivers)
● Declared mostly in AndroidManifest.xml
Functional Android App
<?xml version="1.0" encoding="utf-8"?>
<manifest>
<uses-permission />
<uses-sdk />
<application>
<activity>
</activity>
</application>
</manifest>
Application Manifest File
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout>
<TextView android:text="I am a TextView" />
<Button android:text="I am a Button" />
</LinearLayout>
XML Snippet
Preview
Layouts
• Linear Layout
• Relative Layout
• List View
• Grid View
Linear Layout
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation="vertical" >
<TextView android:text="I am a TextView" />
<Button android:text="I am a Button" />
</LinearLayout>
Linear Layout
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation=“horizontal" >
<TextView android:text="I am a TextView" />
<Button android:text="I am a Button" />
</LinearLayout>
Layouts
Grid ViewList View
UI Widgets
Sample App
<Button android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=“I am a Button"/>
Button myButton =(Button)findViewById(R.id.my_button);
Sample App
public void (View v)
{
// action
}
Add this in XML file
android:onClick="myMethod"
Sample App
● Extend this to create SecondActivity
● invoked on clicking the button
Inside the APK
● Compiled Java source
● Libraries
● XML files for UI, strings
● Resources – Images etc
● Android Manifest
Android Software Stack
● Kernel
● Libraries / Runtime
● Application Framework
● Applications
Android Software Stack
Linux kernel
• Android built on Linux 2.6 kernel
• Provides security, memory management,
process management, network stack,
and driver model
• Abstraction layer between hardware and
the software stack
Libraries
• A set of C/C++ libraries exposed to
developers through the application
framework
Application Framework
Application Framework
Applications
Summary
● Android Components
● Android Sample Program
● Activity, Services, Broadcast Receiver
● Intents
● Android Stack
Contact
arvindd@belimitless.co
http://belimitless.co

More Related Content

What's hot (20)

PPTX
Basic of Android App Development
Abhijeet Gupta
 
PPT
Android application development
MadhuprakashR1
 
PPTX
PPT on Android Applications
Ashish Agarwal
 
PPT
Android presentation slide
APSMIND TECHNOLOGY PVT LTD.
 
PPTX
Android Application Development
Ramesh Prasad
 
PPT
Android seminar report
dgpune
 
PDF
Android Platform Architecture
Naresh Chintalcheru
 
PDF
Introduction to Android development - Presentation Report
Atul Panjwani
 
ODP
Intro To Android App Development
Mike Kvintus
 
PPTX
Android basics
Syed Luqman Quadri
 
PPTX
Android my
pratikguptateddy
 
PPTX
Android Seminar || history || versions||application developement
Shubham Pahune
 
PPTX
Android summer training report
Shashendra Singh
 
PPTX
android architecture
Aashita Gupta
 
PPTX
Android Overview
Raju Kadam
 
PPT
Android development tutorial
nazzf
 
PPT
Android application structure
Alexey Ustenko
 
PDF
Android : Architecture & Components
Akash Bisariya
 
PPTX
Getting started with android
amitgb
 
PPTX
Project presentation (Loginradius SDK for Android)
shwetarathi Rathi
 
Basic of Android App Development
Abhijeet Gupta
 
Android application development
MadhuprakashR1
 
PPT on Android Applications
Ashish Agarwal
 
Android presentation slide
APSMIND TECHNOLOGY PVT LTD.
 
Android Application Development
Ramesh Prasad
 
Android seminar report
dgpune
 
Android Platform Architecture
Naresh Chintalcheru
 
Introduction to Android development - Presentation Report
Atul Panjwani
 
Intro To Android App Development
Mike Kvintus
 
Android basics
Syed Luqman Quadri
 
Android my
pratikguptateddy
 
Android Seminar || history || versions||application developement
Shubham Pahune
 
Android summer training report
Shashendra Singh
 
android architecture
Aashita Gupta
 
Android Overview
Raju Kadam
 
Android development tutorial
nazzf
 
Android application structure
Alexey Ustenko
 
Android : Architecture & Components
Akash Bisariya
 
Getting started with android
amitgb
 
Project presentation (Loginradius SDK for Android)
shwetarathi Rathi
 

Viewers also liked (6)

PPTX
Introduction to Android Programming
'Zamin Mammadov
 
PPTX
Introduction to Android programming
Sirwan Afifi
 
PPT
Intro to Android Programming
Peter van der Linden
 
PDF
[Android] Introduction to Android Programming
Nikmesoft Ltd
 
PDF
Android programming introduction
Yi-Lung Tsai
 
PPTX
Introduction to Android Programming
Raveendra R
 
Introduction to Android Programming
'Zamin Mammadov
 
Introduction to Android programming
Sirwan Afifi
 
Intro to Android Programming
Peter van der Linden
 
[Android] Introduction to Android Programming
Nikmesoft Ltd
 
Android programming introduction
Yi-Lung Tsai
 
Introduction to Android Programming
Raveendra R
 
Ad

Similar to Introduction to Android Programming (20)

PPTX
Hello android world
eleksdev
 
PDF
Introduction to Android Development
Aly Abdelkareem
 
PDF
Android101
David Marques
 
PPTX
Mobile application development
umesh patil
 
PPTX
Android app fundamentals
Amr Salman
 
PDF
Android Development Tutorial
Germán Bringas
 
PPTX
Lec-3-Mobile Application Development.pptx
SheharBano86
 
PDF
04 programmation mobile - android - (db, receivers, services...)
TECOS
 
PPTX
Android Development Basics
Prajakta Dharmpurikar
 
PPT
Introduction to Android Development
Can Elmas
 
PDF
Delegating user tasks in applications
Friedger Müffke
 
PDF
Android development - the basics, FI MUNI, 2012
Tomáš Kypta
 
PPT
Best android classes in mumbai
Vibrant Technologies & Computers
 
PPT
introductiontoandroiddevelopment (2).ppt
NagarajKalligudd1
 
PPTX
01. Introduction to Android_lecture1.pptx
anychowdhury2
 
PPTX
Android Mobile App Development basics PPT
nithya697634
 
PPTX
Unit2
DevaKumari Vijay
 
PPT
Mobile Application Development With Android
guest213e237
 
PPT
Android_Workshop
Senthil ACS
 
PPTX
Android components
NAVEENA ESWARAN
 
Hello android world
eleksdev
 
Introduction to Android Development
Aly Abdelkareem
 
Android101
David Marques
 
Mobile application development
umesh patil
 
Android app fundamentals
Amr Salman
 
Android Development Tutorial
Germán Bringas
 
Lec-3-Mobile Application Development.pptx
SheharBano86
 
04 programmation mobile - android - (db, receivers, services...)
TECOS
 
Android Development Basics
Prajakta Dharmpurikar
 
Introduction to Android Development
Can Elmas
 
Delegating user tasks in applications
Friedger Müffke
 
Android development - the basics, FI MUNI, 2012
Tomáš Kypta
 
Best android classes in mumbai
Vibrant Technologies & Computers
 
introductiontoandroiddevelopment (2).ppt
NagarajKalligudd1
 
01. Introduction to Android_lecture1.pptx
anychowdhury2
 
Android Mobile App Development basics PPT
nithya697634
 
Mobile Application Development With Android
guest213e237
 
Android_Workshop
Senthil ACS
 
Android components
NAVEENA ESWARAN
 
Ad

Recently uploaded (20)

PDF
CONCURSO DE POESIA “POETUFAS – PASSOS SUAVES PELO VERSO.pdf
Colégio Santa Teresinha
 
PDF
Stokey: A Jewish Village by Rachel Kolsky
History of Stoke Newington
 
PPTX
How to Create a PDF Report in Odoo 18 - Odoo Slides
Celine George
 
PDF
The Different Types of Non-Experimental Research
Thelma Villaflores
 
PDF
Women's Health: Essential Tips for Every Stage.pdf
Iftikhar Ahmed
 
PPTX
PATIENT ASSIGNMENTS AND NURSING CARE RESPONSIBILITIES.pptx
PRADEEP ABOTHU
 
PPTX
HUMAN RESOURCE MANAGEMENT: RECRUITMENT, SELECTION, PLACEMENT, DEPLOYMENT, TRA...
PRADEEP ABOTHU
 
PPTX
Post Dated Cheque(PDC) Management in Odoo 18
Celine George
 
PPTX
PPT-Q1-WK-3-ENGLISH Revised Matatag Grade 3.pptx
reijhongidayawan02
 
PPTX
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
PPTX
care of patient with elimination needs.pptx
Rekhanjali Gupta
 
PDF
The Constitution Review Committee (CRC) has released an updated schedule for ...
nservice241
 
PDF
Aprendendo Arquitetura Framework Salesforce - Dia 03
Mauricio Alexandre Silva
 
PPTX
I AM MALALA The Girl Who Stood Up for Education and was Shot by the Taliban...
Beena E S
 
PPTX
QUARTER 1 WEEK 2 PLOT, POV AND CONFLICTS
KynaParas
 
PDF
The History of Phone Numbers in Stoke Newington by Billy Thomas
History of Stoke Newington
 
PPTX
How to Set Up Tags in Odoo 18 - Odoo Slides
Celine George
 
PPTX
GRADE-3-PPT-EVE-2025-ENG-Q1-LESSON-1.pptx
EveOdrapngimapNarido
 
PDF
Exploring the Different Types of Experimental Research
Thelma Villaflores
 
PPTX
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
CONCURSO DE POESIA “POETUFAS – PASSOS SUAVES PELO VERSO.pdf
Colégio Santa Teresinha
 
Stokey: A Jewish Village by Rachel Kolsky
History of Stoke Newington
 
How to Create a PDF Report in Odoo 18 - Odoo Slides
Celine George
 
The Different Types of Non-Experimental Research
Thelma Villaflores
 
Women's Health: Essential Tips for Every Stage.pdf
Iftikhar Ahmed
 
PATIENT ASSIGNMENTS AND NURSING CARE RESPONSIBILITIES.pptx
PRADEEP ABOTHU
 
HUMAN RESOURCE MANAGEMENT: RECRUITMENT, SELECTION, PLACEMENT, DEPLOYMENT, TRA...
PRADEEP ABOTHU
 
Post Dated Cheque(PDC) Management in Odoo 18
Celine George
 
PPT-Q1-WK-3-ENGLISH Revised Matatag Grade 3.pptx
reijhongidayawan02
 
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
care of patient with elimination needs.pptx
Rekhanjali Gupta
 
The Constitution Review Committee (CRC) has released an updated schedule for ...
nservice241
 
Aprendendo Arquitetura Framework Salesforce - Dia 03
Mauricio Alexandre Silva
 
I AM MALALA The Girl Who Stood Up for Education and was Shot by the Taliban...
Beena E S
 
QUARTER 1 WEEK 2 PLOT, POV AND CONFLICTS
KynaParas
 
The History of Phone Numbers in Stoke Newington by Billy Thomas
History of Stoke Newington
 
How to Set Up Tags in Odoo 18 - Odoo Slides
Celine George
 
GRADE-3-PPT-EVE-2025-ENG-Q1-LESSON-1.pptx
EveOdrapngimapNarido
 
Exploring the Different Types of Experimental Research
Thelma Villaflores
 
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 

Introduction to Android Programming