SlideShare ist ein Scribd-Unternehmen logo
1 von 50
Todd Burgess
Todd Burgess Media
todd@toddburgessmedia.com
Twitter: @tburgess57
Github: toddburgessmedia
Introduction to Android Development
https://bit.ly/podcamp2017Android
Introduction to Android Development
Introduction to Android Development
https://bit.ly/podcamp2017Android
About MeAbout Me
Computing and Information Science degree from University of Guelph
Did Java enterprise apps in Silicon Valley for 1.5 years
Migrated to Android platform 2 years ago
Several Apps on Google Play
What’s Your Score
Tech Dive
Eaves Street
Adoptathon Manager and Store Corodinator with Toronto Cat Rescue
Kenny and SpencerKenny and Spencer
Introduction to Android Development
https://bit.ly/podcamp2017Android
Cakes by ToddCakes by Todd
Introducing
Android
Introduction to Android Development
https://bit.ly/podcamp2017Android
Android Introduction
In the Beginning
Android Introduction
In the Beginning
Mobile operating system first
released in 2008
Based on the Linux operating
system
API Version 1
Introduction to Android Development
https://bit.ly/podcamp2017Android
Android 2017Android 2017
Current Android Release is Nougat
Over 1 billion devices in the World are currently running
Android
Android now runs on phones, tablets, watches, cars
and televisions
Introduction to Android Development
https://bit.ly/podcamp2017Android
Android Nougat
API 25
Android Nougat
API 25
Introduction to Android Development
https://bit.ly/podcamp2017Android
Android on TabletsAndroid on Tablets
Introduction to Android Development
https://bit.ly/podcamp2017Android
Android WearAndroid Wear
Introduction to Android Development
https://bit.ly/podcamp2017Android
Android AutoAndroid Auto
Introduction to Android Development
https://bit.ly/podcamp2017Android
Android TVAndroid TV
Introduction to Android Development
https://bit.ly/podcamp2017Android
Android ThingsAndroid Things
Introduction to Android Development
https://bit.ly/podcamp2017Android
Android MarketshareAndroid Marketshare
https://www.statista.com/statistics/263445/global-smartphone-sales-by-operating-system-since-2009/
Introduction to Android Development
https://bit.ly/podcamp2017Android
Android Versions (according to Wikipedia)Android Versions (according to Wikipedia)
Introduction to Android Development
https://bit.ly/podcamp2017Android
Android Version Breakdown (January 2017)
Source: Wikipedia
Android Version Breakdown (January 2017)
Source: Wikipedia
Introduction to Android Development
https://bit.ly/podcamp2017Android
Understanding the Version FragmentationUnderstanding the Version Fragmentation
Android is popular in emerging markets
Emerging market Android devices are use older
technology
Android devices are not upgraded for a variety of
reasons
Upgrading Android devices is a “complicated process”
Introduction to Android Development
https://bit.ly/podcamp2017Android
Introduction
To
Android
Apps
Introduction to Android Development
https://bit.ly/podcamp2017Android
What is a Mobile Application
Source: Techopedia
What is a Mobile Application
Source: Techopedia
A mobile application, most commonly referred to as an
app, is a type of application software designed to run on a
mobile device, such as a smartphone or tablet computer.
Mobile applications frequently serve to provide users with
similar services to those accessed on PCs. Apps are
generally small, individual software units with limited
function.
Introduction to Android Development
https://bit.ly/podcamp2017Android
Advantages of a Mobile Device for AppsAdvantages of a Mobile Device for Apps
Ubitiquy
Availability
Data Consumption over Production
Sensor Information (ie accelertometers, light sensors,
device orientation)
Location Information
Notifications
Introduction to Android Development
https://bit.ly/podcamp2017Android
Introduction to the Android Operating SystemIntroduction to the Android Operating System
Android SDK
Your App
Introduction to Android Development
https://bit.ly/podcamp2017Android
Android App Development OptionsAndroid App Development Options
Natives apps written with the Java programming language
Other options include C, C++, Kotlin
Apps written in Java are referred to as native apps
Other forms of app development include cross platform
development (React Native, Ionic, Xamarin, Unity)
Progressive web apps
Mobile Web sites
Introduction to Android Development
https://bit.ly/podcamp2017Android
Advantages of Native App DevelopmentAdvantages of Native App Development
Take advantge of all Android features
Reduced memory
Increased speed (Perf matters!!)
Users appreciate native experience
Can function off-line
Greater control of the user experience
Introduction to Android Development
https://bit.ly/podcamp2017Android
Putting an App TogetherPutting an App Together
Development Environment
Android Studio (Linux, macOS, Windows)
Java Programming Language
User Experience
Material Design
Testing Environment
Android Virtual Devices and Real Devices
Deployment
Google Play
Custom Applications
Material DesignMaterial Design
Material Design ExamplesMaterial Design Examples
Introduction to Android Development
https://bit.ly/podcamp2017Android
Material Design RationaleMaterial Design Rationale
Material Design is Google’s best practices for Android app design
Material Design Covers
● Colour Palettes
● Icons
● Margins and Borders
● Typography
● Elevations
● Animations
Adhering to Material Design is important to get the app
promoted by Google
Introduction to Android Development
https://bit.ly/podcamp2017Android
Introduction to JavaIntroduction to Java
Java is an open source programming languge
developed by Sun and maintained by Oracle
Object Oriented
Current version is 1.8 but most Android apps use 1.7
Java is found in enterprise applications, Android Studio
and Android
Introduction to Android Development
https://bit.ly/podcamp2017Android
Hello World in JavaHello World in Java
Introduction to Android Development
https://bit.ly/podcamp2017Android
Java vs Java on AndroidJava vs Java on Android
Writing
Android
Code
Introduction to Android Development
https://bit.ly/podcamp2017Android
Android StudioAndroid Studio
Activity
Service Content
Provider
Broadcast
Receiver
Introduction to Android Development
https://bit.ly/podcamp2017Android
Four Pieces of an Android AppFour Pieces of an Android App
Activity
● The user facing part of an app
● Can be thought of as the screens users interact with
Broadcast Receiver
● Handles events
● Can be app generated or system events
Service
● Runs in the background
● Can perform tasks (Intents) outside of the application
Content Provider
● Exposes app data to other applications
Introduction to Android Development
https://bit.ly/podcamp2017Android
Podcast Android AppPodcast Android App
Introduction to Android Development
https://bit.ly/podcamp2017Android
Introduction to MainActivityIntroduction to MainActivity
The first activity of an Android app is referred to as the
MainActivity
Activities have two basic components:
Java class file that extends Activity or
AppCompatActivity
XML Layout file
Introduction to Android Development
https://bit.ly/podcamp2017Android
activity_main.xmlactivity_main.xml
Introduction to Android Development
https://bit.ly/podcamp2017Android
activity_main.xml in Layout Editoractivity_main.xml in Layout Editor
Introduction to Android Development
https://bit.ly/podcamp2017Android
MainActivity.javaMainActivity.java
Introduction to Android Development
https://bit.ly/podcamp2017Android
AndroidManifest.xml
Describing our App to Android
AndroidManifest.xml
Describing our App to Android
Learning
More
About
Android
Android Developers
https://developer.android.com/index.html
Material Design for Android
https://developer.android.com/design/material/index.html
Introduction to Android Development
https://bit.ly/podcamp2017Android
Google ResourcesGoogle Resources
Introduction to Android Development
https://bit.ly/podcamp2017Android
PodcastsPodcasts
Fragmented
Covers a wide range of subjects regarding Android
and Java
Android Developers Backstage
Google podcast that deep dives into all things Android
and coding
Introduction to Android Development
https://bit.ly/podcamp2017Android
Udacity
Free courses by Google About Android
Udacity
Free courses by Google About Android
Introduction to Android Development
https://bit.ly/podcamp2017Android
Caster.io
Short Tutorials on Android Topics
Caster.io
Short Tutorials on Android Topics
Introduction to Android Development
https://bit.ly/podcamp2017Android
Words of Wisdom on Android TutorialsWords of Wisdom on Android Tutorials
Android tools and best practises
are changing every year so
when seeking out answers pay
special attention to the date it
was written
Introduction to Android Development
https://bit.ly/podcamp2017Android
MeetupsMeetups
Toronto Android Developers
https://www.meetup.com/ToAndroidDev/
Toronto Java User Group
https://www.meetup.com/Toronto-Java-Users-Group/
Mobile Growth Meetup
https://www.meetup.com/Mobile-Growth-Toronto/
Thanks for ListeningThanks for Listening
Happy Coding
&
Good Luck

Weitere ähnliche Inhalte

Was ist angesagt?

Android fundamentals and tutorial for beginners
Android fundamentals and tutorial for beginnersAndroid fundamentals and tutorial for beginners
Android fundamentals and tutorial for beginnersBoom Shukla
 
Android basic principles
Android basic principlesAndroid basic principles
Android basic principlesHenk Laracker
 
Android architecture
Android architectureAndroid architecture
Android architectureHari Krishna
 
Android Application Development Using Java
Android Application Development Using JavaAndroid Application Development Using Java
Android Application Development Using Javaamaankhan
 
android-tutorial-for-beginner
android-tutorial-for-beginnerandroid-tutorial-for-beginner
android-tutorial-for-beginnerAjailal Parackal
 
Android Programming Seminar
Android Programming SeminarAndroid Programming Seminar
Android Programming SeminarNhat Nguyen
 
Introduction to Android and Android Studio
Introduction to Android and Android StudioIntroduction to Android and Android Studio
Introduction to Android and Android StudioSuyash Srijan
 
Basic of Android App Development
Basic of Android App DevelopmentBasic of Android App Development
Basic of Android App DevelopmentAbhijeet Gupta
 
Introduction to Android - Mobile Portland
Introduction to Android - Mobile PortlandIntroduction to Android - Mobile Portland
Introduction to Android - Mobile Portlandsullis
 
Android application structure
Android application structureAndroid application structure
Android application structureAlexey Ustenko
 
Intro To Android App Development
Intro To Android App DevelopmentIntro To Android App Development
Intro To Android App DevelopmentMike Kvintus
 
Introduction to android
Introduction to androidIntroduction to android
Introduction to androidzeelpatel0504
 
Android Development Training
Android Development TrainingAndroid Development Training
Android Development Trainingchandutata
 
Android tutorial
Android tutorialAndroid tutorial
Android tutorialmaster760
 
Introduction to Android Development
Introduction to Android DevelopmentIntroduction to Android Development
Introduction to Android DevelopmentAly Abdelkareem
 
Android Studio Overview
Android Studio OverviewAndroid Studio Overview
Android Studio OverviewSalim Hosen
 
Android Workshop Day 1 Part 2
Android Workshop Day 1 Part 2Android Workshop Day 1 Part 2
Android Workshop Day 1 Part 2Ahsanul Karim
 

Was ist angesagt? (20)

Android fundamentals and tutorial for beginners
Android fundamentals and tutorial for beginnersAndroid fundamentals and tutorial for beginners
Android fundamentals and tutorial for beginners
 
Android Platform Architecture
Android Platform ArchitectureAndroid Platform Architecture
Android Platform Architecture
 
Android ppt
Android pptAndroid ppt
Android ppt
 
Android basic principles
Android basic principlesAndroid basic principles
Android basic principles
 
Android architecture
Android architectureAndroid architecture
Android architecture
 
Android Application Development Using Java
Android Application Development Using JavaAndroid Application Development Using Java
Android Application Development Using Java
 
android-tutorial-for-beginner
android-tutorial-for-beginnerandroid-tutorial-for-beginner
android-tutorial-for-beginner
 
Android Programming Seminar
Android Programming SeminarAndroid Programming Seminar
Android Programming Seminar
 
Introduction to Android and Android Studio
Introduction to Android and Android StudioIntroduction to Android and Android Studio
Introduction to Android and Android Studio
 
Basic of Android App Development
Basic of Android App DevelopmentBasic of Android App Development
Basic of Android App Development
 
Introduction to Android - Mobile Portland
Introduction to Android - Mobile PortlandIntroduction to Android - Mobile Portland
Introduction to Android - Mobile Portland
 
Android application structure
Android application structureAndroid application structure
Android application structure
 
Intro To Android App Development
Intro To Android App DevelopmentIntro To Android App Development
Intro To Android App Development
 
Introduction to android
Introduction to androidIntroduction to android
Introduction to android
 
Android Development Training
Android Development TrainingAndroid Development Training
Android Development Training
 
Android tutorial
Android tutorialAndroid tutorial
Android tutorial
 
Introduction to Android Development
Introduction to Android DevelopmentIntroduction to Android Development
Introduction to Android Development
 
Android Studio Overview
Android Studio OverviewAndroid Studio Overview
Android Studio Overview
 
Android Workshop Day 1 Part 2
Android Workshop Day 1 Part 2Android Workshop Day 1 Part 2
Android Workshop Day 1 Part 2
 
Gdsc android introduction
Gdsc android introductionGdsc android introduction
Gdsc android introduction
 

Andere mochten auch

Introduction to Android development - Presentation
Introduction to Android development - PresentationIntroduction to Android development - Presentation
Introduction to Android development - PresentationAtul Panjwani
 
Android Application Development
Android Application DevelopmentAndroid Application Development
Android Application DevelopmentBenny Skogberg
 
Android application developement seminar
Android application developement seminarAndroid application developement seminar
Android application developement seminarNiraj Narkhede
 
Android System Developement
Android System DevelopementAndroid System Developement
Android System DevelopementSiji Sunny
 
Android application development
Android application developmentAndroid application development
Android application developmentslidesuren
 
Testing Responsive Webdesign
Testing Responsive WebdesignTesting Responsive Webdesign
Testing Responsive WebdesignSven Wolfermann
 
Android programming introduction
Android programming introductionAndroid programming introduction
Android programming introductionYi-Lung Tsai
 
Seminar on mobile application development with android
Seminar on mobile application development with androidSeminar on mobile application development with android
Seminar on mobile application development with androidNoor Mohammed Anik
 
Leveraging Android for the Internet of Things with Eclipse M2M
Leveraging Android for the Internet of Things with Eclipse M2MLeveraging Android for the Internet of Things with Eclipse M2M
Leveraging Android for the Internet of Things with Eclipse M2MBenjamin Cabé
 
Getting started with android programming
Getting started with android programmingGetting started with android programming
Getting started with android programmingPERKYTORIALS
 
Android development orientation for starters v4 seminar
Android development orientation for starters v4   seminarAndroid development orientation for starters v4   seminar
Android development orientation for starters v4 seminarJoemarie Amparo
 
App inventor presentation
App inventor presentationApp inventor presentation
App inventor presentationAndrew Kamau
 

Andere mochten auch (20)

Introduction to Android development - Presentation
Introduction to Android development - PresentationIntroduction to Android development - Presentation
Introduction to Android development - Presentation
 
Android Application Development
Android Application DevelopmentAndroid Application Development
Android Application Development
 
Android ppt
Android ppt Android ppt
Android ppt
 
Android application developement seminar
Android application developement seminarAndroid application developement seminar
Android application developement seminar
 
Android System Developement
Android System DevelopementAndroid System Developement
Android System Developement
 
Android application development
Android application developmentAndroid application development
Android application development
 
Testing Responsive Webdesign
Testing Responsive WebdesignTesting Responsive Webdesign
Testing Responsive Webdesign
 
Versions of android
Versions of androidVersions of android
Versions of android
 
Android Basics
Android BasicsAndroid Basics
Android Basics
 
Android
AndroidAndroid
Android
 
Introduction to android
Introduction to androidIntroduction to android
Introduction to android
 
Android programming introduction
Android programming introductionAndroid programming introduction
Android programming introduction
 
Seminar on mobile application development with android
Seminar on mobile application development with androidSeminar on mobile application development with android
Seminar on mobile application development with android
 
Android basics
Android basicsAndroid basics
Android basics
 
Leveraging Android for the Internet of Things with Eclipse M2M
Leveraging Android for the Internet of Things with Eclipse M2MLeveraging Android for the Internet of Things with Eclipse M2M
Leveraging Android for the Internet of Things with Eclipse M2M
 
Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5
 
Getting started with android programming
Getting started with android programmingGetting started with android programming
Getting started with android programming
 
Android development orientation for starters v4 seminar
Android development orientation for starters v4   seminarAndroid development orientation for starters v4   seminar
Android development orientation for starters v4 seminar
 
App inventor presentation
App inventor presentationApp inventor presentation
App inventor presentation
 
Intro to Android Programming
Intro to Android ProgrammingIntro to Android Programming
Intro to Android Programming
 

Ähnlich wie Introduction to Android App Development

Introduction to Android - Mobile Fest Singapore 2009
Introduction to Android - Mobile Fest Singapore 2009Introduction to Android - Mobile Fest Singapore 2009
Introduction to Android - Mobile Fest Singapore 2009sullis
 
Ii 1100-android development for fun and profit
Ii 1100-android development for fun and profitIi 1100-android development for fun and profit
Ii 1100-android development for fun and profitAdrian Mikeliunas
 
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.pptxridzah12
 
Lset's guide for android application development
Lset's guide for android application developmentLset's guide for android application development
Lset's guide for android application developmentActonRoy
 
Android app development.pdf
Android app development.pdfAndroid app development.pdf
Android app development.pdfAbanti Aazmin
 
Day: 1 Introduction to Mobile Application Development (in Android)
Day: 1 Introduction to Mobile Application Development (in Android)Day: 1 Introduction to Mobile Application Development (in Android)
Day: 1 Introduction to Mobile Application Development (in Android)Ahsanul Karim
 
Porting business apps to Windows Phone
Porting business apps to Windows PhonePorting business apps to Windows Phone
Porting business apps to Windows PhoneMichele Capra
 
Android App Development Services - Pattem Digital
Android App Development Services - Pattem DigitalAndroid App Development Services - Pattem Digital
Android App Development Services - Pattem DigitalPattem Digital
 
Android Training Course In Chandigarh
Android Training Course In ChandigarhAndroid Training Course In Chandigarh
Android Training Course In ChandigarhExcellence Academy
 
Latest Android App Development Tools 2019
Latest Android App Development Tools 2019Latest Android App Development Tools 2019
Latest Android App Development Tools 2019Elijahj Williams
 
Android application development
Android application developmentAndroid application development
Android application developmentSoni Singh
 
Android AppDevelopment
Android AppDevelopmentAndroid AppDevelopment
Android AppDevelopmentAshraf Ali
 
Best Frameworks for Android App Development in 2022.pdf
Best Frameworks for Android App Development in 2022.pdfBest Frameworks for Android App Development in 2022.pdf
Best Frameworks for Android App Development in 2022.pdfMarie Weaver
 
Android app Development Prepration Tips
Android app Development Prepration TipsAndroid app Development Prepration Tips
Android app Development Prepration TipsYasmeen Sheikh
 

Ähnlich wie Introduction to Android App Development (20)

Android Training in Chandigarh.pdf
Android Training in Chandigarh.pdfAndroid Training in Chandigarh.pdf
Android Training in Chandigarh.pdf
 
Android Training in Chandigarh.pdf
Android Training in Chandigarh.pdfAndroid Training in Chandigarh.pdf
Android Training in Chandigarh.pdf
 
Introduction to Android - Mobile Fest Singapore 2009
Introduction to Android - Mobile Fest Singapore 2009Introduction to Android - Mobile Fest Singapore 2009
Introduction to Android - Mobile Fest Singapore 2009
 
Ii 1100-android development for fun and profit
Ii 1100-android development for fun and profitIi 1100-android development for fun and profit
Ii 1100-android development for fun and profit
 
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
 
Lset's guide for android application development
Lset's guide for android application developmentLset's guide for android application development
Lset's guide for android application development
 
Android app development.pdf
Android app development.pdfAndroid app development.pdf
Android app development.pdf
 
Day: 1 Introduction to Mobile Application Development (in Android)
Day: 1 Introduction to Mobile Application Development (in Android)Day: 1 Introduction to Mobile Application Development (in Android)
Day: 1 Introduction to Mobile Application Development (in Android)
 
My android
My androidMy android
My android
 
My android
My androidMy android
My android
 
Porting business apps to Windows Phone
Porting business apps to Windows PhonePorting business apps to Windows Phone
Porting business apps to Windows Phone
 
Android App Development Services - Pattem Digital
Android App Development Services - Pattem DigitalAndroid App Development Services - Pattem Digital
Android App Development Services - Pattem Digital
 
Android
AndroidAndroid
Android
 
Android Training Course In Chandigarh
Android Training Course In ChandigarhAndroid Training Course In Chandigarh
Android Training Course In Chandigarh
 
Latest Android App Development Tools 2019
Latest Android App Development Tools 2019Latest Android App Development Tools 2019
Latest Android App Development Tools 2019
 
Android application development
Android application developmentAndroid application development
Android application development
 
Android AppDevelopment
Android AppDevelopmentAndroid AppDevelopment
Android AppDevelopment
 
Best Frameworks for Android App Development in 2022.pdf
Best Frameworks for Android App Development in 2022.pdfBest Frameworks for Android App Development in 2022.pdf
Best Frameworks for Android App Development in 2022.pdf
 
Andriod apps
Andriod appsAndriod apps
Andriod apps
 
Android app Development Prepration Tips
Android app Development Prepration TipsAndroid app Development Prepration Tips
Android app Development Prepration Tips
 

Kürzlich hochgeladen

Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfRagavanV2
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdfSuman Jyoti
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01KreezheaRecto
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptDineshKumar4165
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...SUHANI PANDEY
 
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICS
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICSUNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICS
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICSrknatarajan
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringmulugeta48
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 

Kürzlich hochgeladen (20)

Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICS
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICSUNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICS
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICS
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 

Introduction to Android App Development

  • 1. Todd Burgess Todd Burgess Media todd@toddburgessmedia.com Twitter: @tburgess57 Github: toddburgessmedia Introduction to Android Development https://bit.ly/podcamp2017Android Introduction to Android Development
  • 2. Introduction to Android Development https://bit.ly/podcamp2017Android About MeAbout Me Computing and Information Science degree from University of Guelph Did Java enterprise apps in Silicon Valley for 1.5 years Migrated to Android platform 2 years ago Several Apps on Google Play What’s Your Score Tech Dive Eaves Street Adoptathon Manager and Store Corodinator with Toronto Cat Rescue
  • 4. Introduction to Android Development https://bit.ly/podcamp2017Android Cakes by ToddCakes by Todd
  • 6. Introduction to Android Development https://bit.ly/podcamp2017Android Android Introduction In the Beginning Android Introduction In the Beginning Mobile operating system first released in 2008 Based on the Linux operating system API Version 1
  • 7. Introduction to Android Development https://bit.ly/podcamp2017Android Android 2017Android 2017 Current Android Release is Nougat Over 1 billion devices in the World are currently running Android Android now runs on phones, tablets, watches, cars and televisions
  • 8. Introduction to Android Development https://bit.ly/podcamp2017Android Android Nougat API 25 Android Nougat API 25
  • 9. Introduction to Android Development https://bit.ly/podcamp2017Android Android on TabletsAndroid on Tablets
  • 10. Introduction to Android Development https://bit.ly/podcamp2017Android Android WearAndroid Wear
  • 11. Introduction to Android Development https://bit.ly/podcamp2017Android Android AutoAndroid Auto
  • 12. Introduction to Android Development https://bit.ly/podcamp2017Android Android TVAndroid TV
  • 13. Introduction to Android Development https://bit.ly/podcamp2017Android Android ThingsAndroid Things
  • 14. Introduction to Android Development https://bit.ly/podcamp2017Android Android MarketshareAndroid Marketshare https://www.statista.com/statistics/263445/global-smartphone-sales-by-operating-system-since-2009/
  • 15. Introduction to Android Development https://bit.ly/podcamp2017Android Android Versions (according to Wikipedia)Android Versions (according to Wikipedia)
  • 16. Introduction to Android Development https://bit.ly/podcamp2017Android Android Version Breakdown (January 2017) Source: Wikipedia Android Version Breakdown (January 2017) Source: Wikipedia
  • 17. Introduction to Android Development https://bit.ly/podcamp2017Android Understanding the Version FragmentationUnderstanding the Version Fragmentation Android is popular in emerging markets Emerging market Android devices are use older technology Android devices are not upgraded for a variety of reasons Upgrading Android devices is a “complicated process”
  • 18. Introduction to Android Development https://bit.ly/podcamp2017Android
  • 20. Introduction to Android Development https://bit.ly/podcamp2017Android What is a Mobile Application Source: Techopedia What is a Mobile Application Source: Techopedia A mobile application, most commonly referred to as an app, is a type of application software designed to run on a mobile device, such as a smartphone or tablet computer. Mobile applications frequently serve to provide users with similar services to those accessed on PCs. Apps are generally small, individual software units with limited function.
  • 21. Introduction to Android Development https://bit.ly/podcamp2017Android Advantages of a Mobile Device for AppsAdvantages of a Mobile Device for Apps Ubitiquy Availability Data Consumption over Production Sensor Information (ie accelertometers, light sensors, device orientation) Location Information Notifications
  • 22. Introduction to Android Development https://bit.ly/podcamp2017Android Introduction to the Android Operating SystemIntroduction to the Android Operating System Android SDK Your App
  • 23. Introduction to Android Development https://bit.ly/podcamp2017Android Android App Development OptionsAndroid App Development Options Natives apps written with the Java programming language Other options include C, C++, Kotlin Apps written in Java are referred to as native apps Other forms of app development include cross platform development (React Native, Ionic, Xamarin, Unity) Progressive web apps Mobile Web sites
  • 24. Introduction to Android Development https://bit.ly/podcamp2017Android Advantages of Native App DevelopmentAdvantages of Native App Development Take advantge of all Android features Reduced memory Increased speed (Perf matters!!) Users appreciate native experience Can function off-line Greater control of the user experience
  • 25. Introduction to Android Development https://bit.ly/podcamp2017Android Putting an App TogetherPutting an App Together Development Environment Android Studio (Linux, macOS, Windows) Java Programming Language User Experience Material Design Testing Environment Android Virtual Devices and Real Devices Deployment Google Play Custom Applications
  • 28. Introduction to Android Development https://bit.ly/podcamp2017Android Material Design RationaleMaterial Design Rationale Material Design is Google’s best practices for Android app design Material Design Covers ● Colour Palettes ● Icons ● Margins and Borders ● Typography ● Elevations ● Animations Adhering to Material Design is important to get the app promoted by Google
  • 29.
  • 30. Introduction to Android Development https://bit.ly/podcamp2017Android Introduction to JavaIntroduction to Java Java is an open source programming languge developed by Sun and maintained by Oracle Object Oriented Current version is 1.8 but most Android apps use 1.7 Java is found in enterprise applications, Android Studio and Android
  • 31. Introduction to Android Development https://bit.ly/podcamp2017Android Hello World in JavaHello World in Java
  • 32. Introduction to Android Development https://bit.ly/podcamp2017Android Java vs Java on AndroidJava vs Java on Android
  • 34. Introduction to Android Development https://bit.ly/podcamp2017Android Android StudioAndroid Studio
  • 36. Introduction to Android Development https://bit.ly/podcamp2017Android Four Pieces of an Android AppFour Pieces of an Android App Activity ● The user facing part of an app ● Can be thought of as the screens users interact with Broadcast Receiver ● Handles events ● Can be app generated or system events Service ● Runs in the background ● Can perform tasks (Intents) outside of the application Content Provider ● Exposes app data to other applications
  • 37. Introduction to Android Development https://bit.ly/podcamp2017Android Podcast Android AppPodcast Android App
  • 38. Introduction to Android Development https://bit.ly/podcamp2017Android Introduction to MainActivityIntroduction to MainActivity The first activity of an Android app is referred to as the MainActivity Activities have two basic components: Java class file that extends Activity or AppCompatActivity XML Layout file
  • 39. Introduction to Android Development https://bit.ly/podcamp2017Android activity_main.xmlactivity_main.xml
  • 40. Introduction to Android Development https://bit.ly/podcamp2017Android activity_main.xml in Layout Editoractivity_main.xml in Layout Editor
  • 41. Introduction to Android Development https://bit.ly/podcamp2017Android MainActivity.javaMainActivity.java
  • 42. Introduction to Android Development https://bit.ly/podcamp2017Android AndroidManifest.xml Describing our App to Android AndroidManifest.xml Describing our App to Android
  • 44. Android Developers https://developer.android.com/index.html Material Design for Android https://developer.android.com/design/material/index.html Introduction to Android Development https://bit.ly/podcamp2017Android Google ResourcesGoogle Resources
  • 45. Introduction to Android Development https://bit.ly/podcamp2017Android PodcastsPodcasts Fragmented Covers a wide range of subjects regarding Android and Java Android Developers Backstage Google podcast that deep dives into all things Android and coding
  • 46. Introduction to Android Development https://bit.ly/podcamp2017Android Udacity Free courses by Google About Android Udacity Free courses by Google About Android
  • 47. Introduction to Android Development https://bit.ly/podcamp2017Android Caster.io Short Tutorials on Android Topics Caster.io Short Tutorials on Android Topics
  • 48. Introduction to Android Development https://bit.ly/podcamp2017Android Words of Wisdom on Android TutorialsWords of Wisdom on Android Tutorials Android tools and best practises are changing every year so when seeking out answers pay special attention to the date it was written
  • 49. Introduction to Android Development https://bit.ly/podcamp2017Android MeetupsMeetups Toronto Android Developers https://www.meetup.com/ToAndroidDev/ Toronto Java User Group https://www.meetup.com/Toronto-Java-Users-Group/ Mobile Growth Meetup https://www.meetup.com/Mobile-Growth-Toronto/
  • 50. Thanks for ListeningThanks for Listening Happy Coding & Good Luck

Hinweis der Redaktion

  1. How many use Android devices? How many people have software development experience? Any Java people? Android developers? IOS developers? Web people? Want to get into mobile development? Are in the wrong room?
  2. 30.7% of all devices are 2 years old (Marshmellow) 21.9% of devices are 4 years old (KitKat) 32.9% Lollipop is 3 years old 85.5% of all devices 2 – 4 years old 76% of iOS devices are iOS 10
  3. Bottom two layers will disappear with black box Middle layer will be replaced with Android SDK Top layer will become Your App
  4. Red Box is coming
  5. 5 red boxes to go through
  6. 2 red boxes to go through