SlideShare una empresa de Scribd logo
1 de 50
Descargar para leer sin conexión
Sathish.R
2

o
o
o
o

Introduction About
Android.
IDE Introduction.
Setting Up
Environment.
Dalvik Virtual
Machine.

13 November, 2013

Android
Introduction
Session 2
Tenet Technetronics
3

o

Introduction About
Android.

13 November, 2013

Android
Introduction
Session 2
Tenet Technetronics
4

13 November, 2013

What is Android?
o
o
o
o

o

Operating system based on Linux.
Open Source by Search Giant.
Apps typically written in Java.
Apps run on the Dalvik Virtual Machine(DVM).
November 2007, Open Handset Alliance formed to
develop open standards for mobile devices.

Open Handset Alliance:
o

Google formed a group of hardware, software, and
telecommunication companies with the goal of
Tenet Technetronics
contributing to Android development
5

13 November, 2013

Android

Tenet Technetronics
6

13 November, 2013

History
o
o
o

Android Inc. was founded by Andy Rubin, Rich miner, Nick
sears and Chris White in 2003.
Acquired by Google in July 2005.
The first android phone was HTC G1 Dream(with cupcake)
Released in October 2008.

Tenet Technetronics
Android Evolution

7

13 November, 2013

Tenet Technetronics
8

13 November, 2013

Android Features

o

o
o
o
o
o
o
o
o
o

Open Source framework
Very simple.
Availability of Apps.
Supports 2D,3D graphics.
Java support.
Easy to customize.
Better Notification System(email and various widgets).
SQLite Database.
Bluetooth, EDGE,3G,4G and Wi-Fi .
Camera ,GPS,Compass, and accelerometer.
Tenet Technetronics
Framework

9

13 November, 2013

Tenet Technetronics
10

13 November, 2013

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
Tenet Technetronics
11

o

o

Introduction About
Android.
IDE Introduction.

13 November, 2013

Android
Introduction
Session 2
Tenet Technetronics
12

13 November, 2013

IDE: (Integrated
Development Environment)
o

Programming Environment that consists of






o

o

A Code Editor,
A compiler,
A Debugger,
A GUI builder.

User-Friendly Framework.
Eclipse, Net beans, Android Studio,
Processing, Xamarin Studio, etc.,
Tenet Technetronics
13

o
o
o

Introduction About
Android.
IDE Introduction.
Setting Up
Environment.

13 November, 2013

Android
Introduction
Session 2
Tenet Technetronics
14

13 November, 2013

Development Tools:
o
o
o
o
o

Java JDK.
Eclipse or Net beans.
Android Development Tools(ADT Plugin).
Android latest SDK
Programming Languages
 Java
Tenet Technetronics
15

13 November, 2013

Installation
o

Run Eclipse.chm file and proceed with the
instructions

Tenet Technetronics
16

o
o
o
o

Introduction About
Android.
IDE Introduction.
Setting Up
Environment.
Dalvik Virtual
Machine.

13 November, 2013

Android
Introduction
Session 2
Tenet Technetronics
17

13 November, 2013

Dalvik Virtual Machine
o
o
o
o

o

Java-” write once, run anywhere”.
Software that runs the apps on
Android devices.
Invented by Dan Bornstein(Google).
Register-based.
A tool called dx is used to convert
some (but not all) Java .class files
into the .dex (Dalvik
Executable)format.
Tenet Technetronics
18

13 November, 2013

DVM
o
o

run on a slow CPU
Multiple classes are included in a single
.dex file.

source code

Java compiler

.class file

dx
(conversion tool)

.dex file
(Dalvik
executable)
Tenet Technetronics
19

o

o
o

o
o
o

First Application
(Hello World)
Layouts &
Drawables
Activity Navigation
View Group &
Views
Manifest &
Permissions
Menus & Tabs

13 November, 2013

Applications

Tenet Technetronics
20

o

o
o

o
o
o

First Application
(Hello World)
Layouts &
Drawables
Activity Navigation
View Group &
Views
Manifest &
Permissions
Menus & Tabs

13 November, 2013

Applications

Tenet Technetronics
21

13 November, 2013

Select File -> New -> Other -> Android -> Android Project

Tenet Technetronics
22

13 November, 2013

Tenet Technetronics
23

13 November, 2013

Tenet Technetronics
24

13 November, 2013

Tenet Technetronics
25

13 November, 2013

Tenet Technetronics
26

13 November, 2013

Tenet Technetronics
27

o

o
o

o
o
o

First Application
(Hello World)
Layouts &
Drawables
Activity Navigation
View Group &
Views
Manifest &
Permissions
Menus & Tabs

13 November, 2013

Applications

Tenet Technetronics
28

13 November, 2013

Layouts
o
o

o
o

Linear Layout
Relative Layout
Frame Layout
Table Layout

Tenet Technetronics
29

13 November, 2013

Linear Layout
oAll

the elements are
displayed in a linear
fashion
oHorizontally or Vertically

Tenet Technetronics
30

13 November, 2013

Relative Layout
o

o

Designed to display
child View controls in
relation to each other
Every element
arranges itself relative
to other elements or a
parent element.
Tenet Technetronics
31

13 November, 2013

Table Layout
o

o

Designed to organize
child View controls
into rows and columns.
Divide your layouts
into rows and
columns.
Tenet Technetronics
32

13 November, 2013

Frame Layout
oDisplay

only a single UI
element at a time, or multiple
UI elements within Frame
Layout
oEach element will be
positioned based on the top
left of the screen.

Tenet Technetronics
33

13 November, 2013

Drawables
o

o
o

referencing an image
file from your project
resources.
Supported file types are
PNG and JPG.
Background image for
Layout, button, etc..
Tenet Technetronics
34

o

o
o

o
o
o

First Application
(Hello World)
Layouts &
Drawables
Activity Navigation
View Group &
Views
Manifest &
Permissions
Menus & Tabs

13 November, 2013

Applications

Tenet Technetronics
35

13 November, 2013

Activity Navigation
o
o
o

Moving From one Activity to another.
Pass values from one activity to another
Activity (Intents).
Example.

Tenet Technetronics
36

o

o
o

o
o
o

First Application
(Hello World)
Layouts &
Drawables
Activity Navigation
View Group &
Views
Manifest &
Permissions
Menus & Tabs

13 November, 2013

Applications

Tenet Technetronics
37

13 November, 2013

Views And View Groups
we can declare the layout in two ways:
o

o

Programmatically
Declaring the widgets or UI elements in
XML.

The layout consists of Views and View
Groups.
Tenet Technetronics
38

13 November, 2013

View Groups
o
o

o

Layouts are called View groups
In which the child Views or View Groups
are arranged either vertically or
horizontally.
Example
Tenet Technetronics
39

o

o
o

o
o
o

First Application
(Hello World)
Layouts &
Drawables
Activity Navigation
View Group &
Views
Manifest &
Permissions
Menus & Tabs

13 November, 2013

Applications

Tenet Technetronics
40

13 November, 2013

Manifest and Permissions
o

o

A resource file which contains all the details
needed by the android system about the
application.
This is an xml file which must be named as
AndroidManifest.xml and placed at application
root.

Tenet Technetronics
41

13 November, 2013

Android Manifest
It allows us to define
o The packages, API, libraries needed for the
application.
o Basic building blocks of application like
activities, services and etc.
o Details about permissions.
o Set of classes needed before launch.
Tenet Technetronics
42

13 November, 2013

Elements of
AndroidManifest.xml
o
o
o
o

o
o
o
o

o
o

uses-permission
permission
permission-group
permission-tree
Instrumentation
uses-sdk
uses-configuration
uses-feature
supports-screens, compatible-screens
supports-gl-texture
Tenet Technetronics
43

13 November, 2013

Elements of Manifest
uses-permission  purpose of security.
o permission  Access Control.
o uses- sdk the platform compatibility.
o uses-configuration  set of hardware and
software requirement.
o supports-screens,
and compatible-screens screen
configuration mode and size of the screen
o

Tenet Technetronics
44

13 November, 2013

Example

Tenet Technetronics
45

o

o
o

o
o
o

First Application
(Hello World)
Layouts &
Drawables
Activity Navigation
View Group &
Views
Manifest &
Permissions
Menus & Tabs

13 November, 2013

Applications

Tenet Technetronics
46

13 November, 2013

Menu
o
o
o

A common user interface component in
many types of applications.
Interface for managing the items in a
menu.
If you're developing for Android 2.3 or
lower, users can reveal the options menu
panel by pressing the Menu button.
Tenet Technetronics
47

13 November, 2013

Menu
o

Context menus


o

Options menus


o

a floating list of menu items that appears when a user
touches and holds a particular item displayed in the view

the one that appears when a user touches the menu
button on the mobile.

Sub menus


a floating list of menu items that appears when the user
touches a menu item that contains a nested menu
Tenet Technetronics
48

13 November, 2013

Tabs
o
o

o

A nice way to present multiple
thing on a Single Screen
Tabs in the action bar make it
easy to explore and switch
between different views or
functional aspects.
Example
Tenet Technetronics
49

13 November, 2013

Tenet Technetronics
50

13 November, 2013

Tenet Technetronics

Más contenido relacionado

Similar a Android introduction session 1

Android bluetooth robot
Android  bluetooth robotAndroid  bluetooth robot
Android bluetooth robot
Sathish Raju
 
Build Mobile Application In Android
Build Mobile Application In AndroidBuild Mobile Application In Android
Build Mobile Application In Android
dnnddane
 
Android development training programme Day 1
Android development training programme Day 1Android development training programme Day 1
Android development training programme Day 1
DHIRAJ PRAVIN
 

Similar a Android introduction session 1 (20)

Android bluetooth robot
Android  bluetooth robotAndroid  bluetooth robot
Android bluetooth robot
 
Android overview
Android overviewAndroid overview
Android overview
 
Engineering and Industrial Mobile Application (APP) Development
Engineering and Industrial Mobile Application (APP) DevelopmentEngineering and Industrial Mobile Application (APP) Development
Engineering and Industrial Mobile Application (APP) Development
 
Android Programming made easy
Android Programming made easyAndroid Programming made easy
Android Programming made easy
 
Android dev o_auth
Android dev o_authAndroid dev o_auth
Android dev o_auth
 
Android Intro
Android IntroAndroid Intro
Android Intro
 
First Steps with Android - An Exciting Introduction
First Steps with Android - An Exciting IntroductionFirst Steps with Android - An Exciting Introduction
First Steps with Android - An Exciting Introduction
 
Android app development ppt
Android app development pptAndroid app development ppt
Android app development ppt
 
Build Mobile Application In Android
Build Mobile Application In AndroidBuild Mobile Application In Android
Build Mobile Application In Android
 
android level 1
android level 1android level 1
android level 1
 
SensActions-Report
SensActions-ReportSensActions-Report
SensActions-Report
 
Android development training programme Day 1
Android development training programme Day 1Android development training programme Day 1
Android development training programme Day 1
 
MOTODEV Studio for Android
MOTODEV Studio for AndroidMOTODEV Studio for Android
MOTODEV Studio for Android
 
Android app development
Android app developmentAndroid app development
Android app development
 
Introduction to Android Development Part 1
Introduction to Android Development Part 1Introduction to Android Development Part 1
Introduction to Android Development Part 1
 
PPT Companion to Android
PPT Companion to AndroidPPT Companion to Android
PPT Companion to Android
 
Android TCJUG
Android TCJUGAndroid TCJUG
Android TCJUG
 
Introduction to android
Introduction to androidIntroduction to android
Introduction to android
 
Android platform
Android platform Android platform
Android platform
 
OS in mobile devices [Android]
OS in mobile devices [Android]OS in mobile devices [Android]
OS in mobile devices [Android]
 

Último

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 

Último (20)

ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptx
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 

Android introduction session 1