SlideShare a Scribd company logo
Android Workshop
Yantra 3.0
Presented By:-
Hem Shrestha
hereshem@gmail.com
Yubaraj Poudel
yubarajpoudel708@gmail.com
Table of Content
● Introduction to Android Platform
● Development Environment
● Hello World!
● Application Fundamentals
● User Interface
● Working with Web Services (JSON)
● Building Interactive Android App
Perquisites
Basic Java
(If else, loops, Data Types, Data structures)
Object Oriented Programming
(Class, Object, Inheritance)
Android Platform Basics
Introduction and history
Android Versions
Android Architecture
Android Virtual Machine
(Dalvik VM, Ark VM is latest in 4.4)
Introduction
A Linux based Operating System designed
primarily for touch screen mobile
devices
Initially developed by Android
Inc, lead by Andy Rubin and
later purchased by
Google in 2005
Android is Open Source and
Google releases code under
Apache2 license.
Android Versions
Android Versions Distribution
Android Architecture
Dalvik Virtual Machine
Android Development Environment
JDK
Eclipse IDE
ADT Plugin
Android SDK
AVD
Debugging with Android LogCat
Eclipse Perspective – Java/DDMS
Hello World !
Application Fundamentals
● Apps Development Flow
● Build Cycle
● Directory Structure
● Android Manifest File
● Android Application
Apps Development Flow
Apps Build Cycle
Directory Structure
src/
bin/ - Output directory of the build. final .apk
gen/ - R.java etc
libs/
assets/
res/ - Contains application resources, such as
drawable files, layout files, and string
values.
drawable/
layout/
values/
menu/
xml/
AndroidManifest.xml
App Manifest File (AndroidManifest.xml)
"Starting point" of app
It describes:
• Package name
• Minimum level Android API
• Application name + icon
• Required Permissions
• The components of the application
(activities, services, broadcast receivers, and content providers)
Describes first activity to launch
• Other stuff
Android Application
Components :
1. Activity
2. Service
3. Broadcast Receiver
4. Content Provider
Activity
Android UI - Design
Two ways to construct :
1. xml
2. code
Using xml layout
Using Java Code
Android UI – Components (Elements)
Click Event Handling
OnClickListener mClickListener = new OnClickListener() {
@Override
public void onClick(View v) {
switch(v.getId()){
case R.id.btn1:
// do action1
break;
case R.id.btn2:
// do action2
break;
}
}
};
findViewById(R.id.btn1).setOnClickListener(mClickListener);
findViewById(R.id.btn2).setOnClickListener(mClickListener);
Working with Web Services
Concept of API
Data exchange format (JSON)
Android Stuffs
API Concept
• Application Program Interface
• An interface by software components to communicate
with each other
• A set of routines, protocols, and tools for building
software applications.
• A good API makes it easier to develop a program by
providing all the building blocks.
JSON Data
• JSON (JavaScript Object Notation) is a lightweight text-
based open standard designed for human-readable
data interchange...
• Easy for machines to parse and generate
• Familiar to programmers of the C-family of languages
• JSON Object and JSON Array
• Collection of name/value pairs
• Alternative: XML
JSON Vs. XML
Android Stuffs
Adding permission
Writing server request file
Check for internet connection
Sync and Async Task
Background and foreground process
Building Apps
Initially 5 buttons
Button Action
Code
Pin
Status
Response
Forward 1 1010 {“pin1”:1, “pin2”:0, “pin3”:1, “pin4”:0}
Reverse 2 0101 {“pin1”:0, “pin2”:1, “pin3”:0, “pin4”:1}
Left 3 0010 {“pin1”:0, “pin2”:0, “pin3”:1, “pin4”:0}
Right 4 1000 {“pin1”:1, “pin2”:0, “pin3”:0, “pin4”:0}
Stop 0 0000 {“pin1”:0, “pin2”:0, “pin3”:0, “pin4”:0}
Keep on touch
public void showMyContact(){
String username = “hereshem”; // here‘s Hem
Log.i(“GitHub”, “github.com/” + username);
Log.i(“Facebook”, “facebook.com/” + username);
Log.i(“Twitter”, “twitter.com/” + username);
Log.i(“Blog”, username + “.blogspot.com”);
Log.i(“Email”, username + “@gmail.com”);
}
References
http://developer.android.com/
http://www.androidhive.info/
http://www.tutorialspoint.com/android/
More Source code Repositories in
http://github.com/
Thanks !!
Best of luck for the upcoming events
cheers……….

More Related Content

What's hot

Basic android-ppt
Basic android-pptBasic android-ppt
Basic android-ppt
Srijib Roy
 
Android Overview
Android OverviewAndroid Overview
Android Overview
Raju Kadam
 
Android architecture
Android architectureAndroid architecture
Android architecture
Saurabh Kukreja
 
Android fundamentals and tutorial for beginners
Android fundamentals and tutorial for beginnersAndroid fundamentals and tutorial for beginners
Android fundamentals and tutorial for beginnersBoom Shukla
 
Introduction to Android, Architecture & Components
Introduction to  Android, Architecture & ComponentsIntroduction to  Android, Architecture & Components
Introduction to Android, Architecture & Components
Vijay Rastogi
 
PPT Companion to Android
PPT Companion to AndroidPPT Companion to Android
PPT Companion to Android
Dharani Kumar Madduri
 
android-tutorial-for-beginner
android-tutorial-for-beginnerandroid-tutorial-for-beginner
android-tutorial-for-beginnerAjailal Parackal
 
Android application structure
Android application structureAndroid application structure
Android application structureAlexey Ustenko
 
Project presentation (Loginradius SDK for Android)
Project presentation (Loginradius SDK for Android)Project presentation (Loginradius SDK for Android)
Project presentation (Loginradius SDK for Android)
shwetarathi Rathi
 
Android Basic Concept
Android Basic Concept Android Basic Concept
Android Basic Concept
University of Potsdam
 
Introduction to Android and Android Studio
Introduction to Android and Android StudioIntroduction to Android and Android Studio
Introduction to Android and Android Studio
Suyash Srijan
 
Android basic principles
Android basic principlesAndroid basic principles
Android basic principlesHenk Laracker
 
Android Programming Seminar
Android Programming SeminarAndroid Programming Seminar
Android Programming Seminar
Nhat Nguyen
 
Android Application Development
Android Application DevelopmentAndroid Application Development
Android Application Development
Benny Skogberg
 
Basic of Android App Development
Basic of Android App DevelopmentBasic of Android App Development
Basic of Android App Development
Abhijeet Gupta
 
Introduction to Android Development Part 1
Introduction to Android Development Part 1Introduction to Android Development Part 1
Introduction to Android Development Part 1
Kainda Kiniel Daka
 
Basic android development
Basic android developmentBasic android development
Basic android developmentUpanya Singh
 
Android Studio Overview
Android Studio OverviewAndroid Studio Overview
Android Studio Overview
Salim Hosen
 
Android Web app
Android Web app Android Web app
Android Web app
Sumit Kumar
 

What's hot (20)

Basic android-ppt
Basic android-pptBasic android-ppt
Basic android-ppt
 
Android Overview
Android OverviewAndroid Overview
Android Overview
 
Android architecture
Android architectureAndroid architecture
Android architecture
 
Android fundamentals and tutorial for beginners
Android fundamentals and tutorial for beginnersAndroid fundamentals and tutorial for beginners
Android fundamentals and tutorial for beginners
 
Introduction to Android, Architecture & Components
Introduction to  Android, Architecture & ComponentsIntroduction to  Android, Architecture & Components
Introduction to Android, Architecture & Components
 
Android Training
Android TrainingAndroid Training
Android Training
 
PPT Companion to Android
PPT Companion to AndroidPPT Companion to Android
PPT Companion to Android
 
android-tutorial-for-beginner
android-tutorial-for-beginnerandroid-tutorial-for-beginner
android-tutorial-for-beginner
 
Android application structure
Android application structureAndroid application structure
Android application structure
 
Project presentation (Loginradius SDK for Android)
Project presentation (Loginradius SDK for Android)Project presentation (Loginradius SDK for Android)
Project presentation (Loginradius SDK for Android)
 
Android Basic Concept
Android Basic Concept Android Basic Concept
Android Basic Concept
 
Introduction to Android and Android Studio
Introduction to Android and Android StudioIntroduction to Android and Android Studio
Introduction to Android and Android Studio
 
Android basic principles
Android basic principlesAndroid basic principles
Android basic principles
 
Android Programming Seminar
Android Programming SeminarAndroid Programming Seminar
Android Programming Seminar
 
Android Application Development
Android Application DevelopmentAndroid Application Development
Android Application Development
 
Basic of Android App Development
Basic of Android App DevelopmentBasic of Android App Development
Basic of 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
 
Basic android development
Basic android developmentBasic android development
Basic android development
 
Android Studio Overview
Android Studio OverviewAndroid Studio Overview
Android Studio Overview
 
Android Web app
Android Web app Android Web app
Android Web app
 

Similar to Arduino - Android Workshop Presentation

Mobile development
Mobile developmentMobile development
Mobile development
Sayed Ahmed
 
Dload mobile development
Dload mobile developmentDload mobile development
Dload mobile development
Sayed Ahmed
 
Introduction to android mobile app development.pptx
Introduction to android mobile app development.pptxIntroduction to android mobile app development.pptx
Introduction to android mobile app development.pptx
ridzah12
 
Unit I- ANDROID OVERVIEW.ppt
Unit I- ANDROID OVERVIEW.pptUnit I- ANDROID OVERVIEW.ppt
Unit I- ANDROID OVERVIEW.ppt
dineshkumar periyasamy
 
Mobile Web Apps and the Intel® XDK
Mobile Web Apps and the Intel® XDKMobile Web Apps and the Intel® XDK
Mobile Web Apps and the Intel® XDK
Intel® Software
 
Android architecture and Additional Components
Android architecture and Additional ComponentsAndroid architecture and Additional Components
Android architecture and Additional Components
SoftNutx
 
01 03 - introduction to android
01  03 - introduction to android01  03 - introduction to android
01 03 - introduction to android
Siva Kumar reddy Vasipally
 
Android and its feature
Android and its featureAndroid and its feature
Android and its feature
Shubham Kumar
 
Android Development in a Nutshell
Android Development in a NutshellAndroid Development in a Nutshell
Android Development in a NutshellAleix Solé
 
Android understanding
Android understandingAndroid understanding
Android understanding
Ramesh Rao
 
TK2323 Lecture 1 - Introduction to Mobile Application.pdf
TK2323 Lecture 1 - Introduction to Mobile Application.pdfTK2323 Lecture 1 - Introduction to Mobile Application.pdf
TK2323 Lecture 1 - Introduction to Mobile Application.pdf
Lam Chun
 
Android introduction
Android introductionAndroid introduction
Android introduction
Reena Nachare
 
Android overview
Android overviewAndroid overview
Android overview
Has Taiar
 
Mobile application development
Mobile application developmentMobile application development
Mobile application development
umesh patil
 
Phonebook Directory or Address Book In Android
Phonebook Directory or Address Book In AndroidPhonebook Directory or Address Book In Android
Phonebook Directory or Address Book In Android
ABHISHEK DINKAR
 
Technology and Android.pptx
Technology and Android.pptxTechnology and Android.pptx
Technology and Android.pptx
muthulakshmi cse
 

Similar to Arduino - Android Workshop Presentation (20)

Android overview
Android overviewAndroid overview
Android overview
 
Android dev o_auth
Android dev o_authAndroid dev o_auth
Android dev o_auth
 
Android course1
Android course1Android course1
Android course1
 
Mobile development
Mobile developmentMobile development
Mobile development
 
Android OS
Android OSAndroid OS
Android OS
 
Dload mobile development
Dload mobile developmentDload mobile development
Dload mobile development
 
Introduction to android mobile app development.pptx
Introduction to android mobile app development.pptxIntroduction to android mobile app development.pptx
Introduction to android mobile app development.pptx
 
Unit I- ANDROID OVERVIEW.ppt
Unit I- ANDROID OVERVIEW.pptUnit I- ANDROID OVERVIEW.ppt
Unit I- ANDROID OVERVIEW.ppt
 
Mobile Web Apps and the Intel® XDK
Mobile Web Apps and the Intel® XDKMobile Web Apps and the Intel® XDK
Mobile Web Apps and the Intel® XDK
 
Android architecture and Additional Components
Android architecture and Additional ComponentsAndroid architecture and Additional Components
Android architecture and Additional Components
 
01 03 - introduction to android
01  03 - introduction to android01  03 - introduction to android
01 03 - introduction to android
 
Android and its feature
Android and its featureAndroid and its feature
Android and its feature
 
Android Development in a Nutshell
Android Development in a NutshellAndroid Development in a Nutshell
Android Development in a Nutshell
 
Android understanding
Android understandingAndroid understanding
Android understanding
 
TK2323 Lecture 1 - Introduction to Mobile Application.pdf
TK2323 Lecture 1 - Introduction to Mobile Application.pdfTK2323 Lecture 1 - Introduction to Mobile Application.pdf
TK2323 Lecture 1 - Introduction to Mobile Application.pdf
 
Android introduction
Android introductionAndroid introduction
Android introduction
 
Android overview
Android overviewAndroid overview
Android overview
 
Mobile application development
Mobile application developmentMobile application development
Mobile application development
 
Phonebook Directory or Address Book In Android
Phonebook Directory or Address Book In AndroidPhonebook Directory or Address Book In Android
Phonebook Directory or Address Book In Android
 
Technology and Android.pptx
Technology and Android.pptxTechnology and Android.pptx
Technology and Android.pptx
 

Recently uploaded

HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
Robbie Edward Sayers
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
gdsczhcet
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
Kamal Acharya
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
manasideore6
 
ML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptxML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptx
Vijay Dialani, PhD
 
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdfGoverning Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
WENKENLI1
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
Divya Somashekar
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
Amil Baba Dawood bangali
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
ankuprajapati0525
 
AP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specificAP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specific
BrazilAccount1
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Teleport Manpower Consultant
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
Kamal Acharya
 
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptxCFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
R&R Consult
 
Investor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptxInvestor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptx
AmarGB2
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
AhmedHussein950959
 
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
H.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdfH.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdf
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
AJAYKUMARPUND1
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
Jayaprasanna4
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
fxintegritypublishin
 

Recently uploaded (20)

HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
 
ML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptxML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptx
 
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdfGoverning Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
 
AP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specificAP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specific
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
 
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptxCFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
 
Investor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptxInvestor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptx
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
 
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
H.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdfH.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdf
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
 

Arduino - Android Workshop Presentation

  • 1. Android Workshop Yantra 3.0 Presented By:- Hem Shrestha hereshem@gmail.com Yubaraj Poudel yubarajpoudel708@gmail.com
  • 2. Table of Content ● Introduction to Android Platform ● Development Environment ● Hello World! ● Application Fundamentals ● User Interface ● Working with Web Services (JSON) ● Building Interactive Android App
  • 3. Perquisites Basic Java (If else, loops, Data Types, Data structures) Object Oriented Programming (Class, Object, Inheritance)
  • 4. Android Platform Basics Introduction and history Android Versions Android Architecture Android Virtual Machine (Dalvik VM, Ark VM is latest in 4.4)
  • 5. Introduction A Linux based Operating System designed primarily for touch screen mobile devices Initially developed by Android Inc, lead by Andy Rubin and later purchased by Google in 2005 Android is Open Source and Google releases code under Apache2 license.
  • 10. Android Development Environment JDK Eclipse IDE ADT Plugin Android SDK AVD Debugging with Android LogCat Eclipse Perspective – Java/DDMS
  • 12. Application Fundamentals ● Apps Development Flow ● Build Cycle ● Directory Structure ● Android Manifest File ● Android Application
  • 15. Directory Structure src/ bin/ - Output directory of the build. final .apk gen/ - R.java etc libs/ assets/ res/ - Contains application resources, such as drawable files, layout files, and string values. drawable/ layout/ values/ menu/ xml/ AndroidManifest.xml
  • 16. App Manifest File (AndroidManifest.xml) "Starting point" of app It describes: • Package name • Minimum level Android API • Application name + icon • Required Permissions • The components of the application (activities, services, broadcast receivers, and content providers) Describes first activity to launch • Other stuff
  • 17. Android Application Components : 1. Activity 2. Service 3. Broadcast Receiver 4. Content Provider
  • 19.
  • 20. Android UI - Design Two ways to construct : 1. xml 2. code
  • 23. Android UI – Components (Elements)
  • 24. Click Event Handling OnClickListener mClickListener = new OnClickListener() { @Override public void onClick(View v) { switch(v.getId()){ case R.id.btn1: // do action1 break; case R.id.btn2: // do action2 break; } } }; findViewById(R.id.btn1).setOnClickListener(mClickListener); findViewById(R.id.btn2).setOnClickListener(mClickListener);
  • 25. Working with Web Services Concept of API Data exchange format (JSON) Android Stuffs
  • 26. API Concept • Application Program Interface • An interface by software components to communicate with each other • A set of routines, protocols, and tools for building software applications. • A good API makes it easier to develop a program by providing all the building blocks.
  • 27. JSON Data • JSON (JavaScript Object Notation) is a lightweight text- based open standard designed for human-readable data interchange... • Easy for machines to parse and generate • Familiar to programmers of the C-family of languages • JSON Object and JSON Array • Collection of name/value pairs • Alternative: XML
  • 29. Android Stuffs Adding permission Writing server request file Check for internet connection Sync and Async Task Background and foreground process
  • 30. Building Apps Initially 5 buttons Button Action Code Pin Status Response Forward 1 1010 {“pin1”:1, “pin2”:0, “pin3”:1, “pin4”:0} Reverse 2 0101 {“pin1”:0, “pin2”:1, “pin3”:0, “pin4”:1} Left 3 0010 {“pin1”:0, “pin2”:0, “pin3”:1, “pin4”:0} Right 4 1000 {“pin1”:1, “pin2”:0, “pin3”:0, “pin4”:0} Stop 0 0000 {“pin1”:0, “pin2”:0, “pin3”:0, “pin4”:0}
  • 31. Keep on touch public void showMyContact(){ String username = “hereshem”; // here‘s Hem Log.i(“GitHub”, “github.com/” + username); Log.i(“Facebook”, “facebook.com/” + username); Log.i(“Twitter”, “twitter.com/” + username); Log.i(“Blog”, username + “.blogspot.com”); Log.i(“Email”, username + “@gmail.com”); }
  • 33. Thanks !! Best of luck for the upcoming events cheers……….