SlideShare a Scribd company logo
1 of 31
Download to read offline
Getting Started as an
Android Developer
Stani Meredith Web & Mobile Faculty, Seattle Central College
Email: Stanislava.Meredith@seattlecolleges.edu
@StaniMeredith
Why Android?
● Android's dominating market share, its open source
license to device manufacturers, and its open source
development model make it a great choice for starting
out as a mobile developer.
● It can be expected that the demand for Android
developers will continue to grow.
● As an Android Developer you can develop for a wide
array of devices ranging from phones and tablets to
wearables, home and vehicle systems.
● You develop a variety of apps such as games, news,
photography, education or shopping apps, to name a
few.
Android Developer Career Paths
There is a great demand for contract or in house Android
developers. Some of the core skills for entry level
developers include programming with Java, using the
Android SDK, Android Studio, Gradle, and Git as well as
familiarity with agile methodologies.
You can also deploy and monetize your app our app
through a marketplace such as Google Play, Amazon
Appstore or directly to users via a website.
*At this time there is a $25 registration fee to register with Google Play.
Prerequisite Coding Skills:
In order to be successful with Android programming, you
should already have background in the following
languages:
● XML: (eXtensible Markup Language) is used to store
data.
● Java: You need to have solid programming skills in
Java basics and also be versed with Object Oriented
Programming in Java.
● SQL: You need to have basic working knowledge of
databases, such as writing Create Read Update Delete
queries. (Android comes with the popular embedded
SQLite database).
IDE
To develop Android Apps you need to use an IDE
(Integrated Development Environment). Android Studio,
which is now the official IDE for developing Android Apps.
Be sure to check out the many helpful samples which come
with the SDK.
Android Studio and the SDK are available for free download
and cross platform compatible.
https://developer.android.com/studio/index.html
To learn more...
For the most basic introduction see Android's Building Your
First App
If you are self motivated you can try using the Udacity
Android Beginner course:
Take a class at Seattle Central College
https://mycentral.seattlecolleges.edu/ or at another local
college.
● ITC 115 Object Oriented Programming with Java
● ITC 162 Introduction to Android Programming
● ITC 298 Android Capstone Project
Seattle Central College
Introduction to Java - the programming
language used to build Android apps
● Java is a high-level programming language originally
developed by Sun Microsystems and released in 1995.
● Java runs on a variety of platforms, such as Windows,
Mac OS, and the various versions of UNIX.
●
● We will use an online Java compiler to quickly type and
test our code.
● Normally you need to download Java to your machine in
order to code and run Java programs. This is a
temporary, quick start too we can use for now:
https://www.compilejava.net/
Example 1 - Hello World
//this is my first java program
public class HelloWorld {
public static void main(String []args) {
System.out.println("Hello World");
}
}
Example 2 - Bill Calculator
public class BillCalculator {
public static void main(String[] args) {
//this is a one line comment
System.out.println("Your bill from Jane's restaurant");
System.out.println();
/* this is a multiline comment
* declare variables with different data types */
String item = "Breakfast Special";
double price = 7.99;
int servings = 2;
// calculate the tax and the total
double tax = 0.1 * price;
double total = (price + tax) * servings;
//store the output in a string
String bill =
"Order Item: " + item + "n" +
"Price: $" + price + "n" +
"Servings: " + servings + "n" +
"Tax: " + tax + "n" + "TOTAL: " + total;
//print the output to the console
System.out.println (bill);
System.out.println("Thanks!");
}
}
Tip Calculator App in Android Studio
Following are selected screenshots of the Tip Calculator
app, as it’s being developed and tested in the emulator in
Android Studio.
Thanks and best of luck with your coding
adventures
Learning Android programming and keeping up with
constant updates from Google can be challenging, but it is
also fun and rewarding.

More Related Content

What's hot

Ui layout (incomplete)
Ui layout (incomplete)Ui layout (incomplete)
Ui layout (incomplete)Ahsanul Karim
 
Introduction & App Structure
Introduction & App StructureIntroduction & App Structure
Introduction & App StructureCITSimon
 
Android crash course_20180812
Android crash course_20180812Android crash course_20180812
Android crash course_20180812Haim Michael
 
Manideep Lakkakula Resume - 2 year experence in DotNet
Manideep Lakkakula Resume - 2 year experence in DotNetManideep Lakkakula Resume - 2 year experence in DotNet
Manideep Lakkakula Resume - 2 year experence in DotNetManideep Kumar
 
BHAGWANT UNIVERSITY
BHAGWANT UNIVERSITYBHAGWANT UNIVERSITY
BHAGWANT UNIVERSITYSuraj Singh
 
A day in the life of an android developer
A day in the life of an android developerA day in the life of an android developer
A day in the life of an android developerEdureka!
 
How to become an android application developer
How to become an android application developerHow to become an android application developer
How to become an android application developerventurehire
 
Android application development
Android application developmentAndroid application development
Android application developmentSoni Singh
 
Baparekraf Digital Talent Day: Monitoring dan Coaching Penerima Fasilitasi BD...
Baparekraf Digital Talent Day: Monitoring dan Coaching Penerima Fasilitasi BD...Baparekraf Digital Talent Day: Monitoring dan Coaching Penerima Fasilitasi BD...
Baparekraf Digital Talent Day: Monitoring dan Coaching Penerima Fasilitasi BD...DicodingEvent
 

What's hot (11)

Ui layout (incomplete)
Ui layout (incomplete)Ui layout (incomplete)
Ui layout (incomplete)
 
Effective Android UI - English
Effective Android UI - EnglishEffective Android UI - English
Effective Android UI - English
 
Introduction & App Structure
Introduction & App StructureIntroduction & App Structure
Introduction & App Structure
 
Android crash course_20180812
Android crash course_20180812Android crash course_20180812
Android crash course_20180812
 
Manideep Lakkakula Resume - 2 year experence in DotNet
Manideep Lakkakula Resume - 2 year experence in DotNetManideep Lakkakula Resume - 2 year experence in DotNet
Manideep Lakkakula Resume - 2 year experence in DotNet
 
AngularJS 101
AngularJS 101AngularJS 101
AngularJS 101
 
BHAGWANT UNIVERSITY
BHAGWANT UNIVERSITYBHAGWANT UNIVERSITY
BHAGWANT UNIVERSITY
 
A day in the life of an android developer
A day in the life of an android developerA day in the life of an android developer
A day in the life of an android developer
 
How to become an android application developer
How to become an android application developerHow to become an android application developer
How to become an android application developer
 
Android application development
Android application developmentAndroid application development
Android application development
 
Baparekraf Digital Talent Day: Monitoring dan Coaching Penerima Fasilitasi BD...
Baparekraf Digital Talent Day: Monitoring dan Coaching Penerima Fasilitasi BD...Baparekraf Digital Talent Day: Monitoring dan Coaching Penerima Fasilitasi BD...
Baparekraf Digital Talent Day: Monitoring dan Coaching Penerima Fasilitasi BD...
 

Viewers also liked

Will robots take our jobs (short version) for Women Techmakers Talk
Will robots take our jobs (short version) for Women Techmakers TalkWill robots take our jobs (short version) for Women Techmakers Talk
Will robots take our jobs (short version) for Women Techmakers TalkAva Meredith
 
Getting Started with Android Application Development
Getting Started with Android Application DevelopmentGetting Started with Android Application Development
Getting Started with Android Application DevelopmentAsanka Indrajith
 
Getting Started with Android Development
Getting Started with Android DevelopmentGetting Started with Android Development
Getting Started with Android DevelopmentEdureka!
 
Android Livecoding Series
Android Livecoding SeriesAndroid Livecoding Series
Android Livecoding SeriesArif Huda
 
[IWIC2015 - PROPOSAL] CALCULATHINGS - A fully customizable calculator for any...
[IWIC2015 - PROPOSAL] CALCULATHINGS - A fully customizable calculator for any...[IWIC2015 - PROPOSAL] CALCULATHINGS - A fully customizable calculator for any...
[IWIC2015 - PROPOSAL] CALCULATHINGS - A fully customizable calculator for any...sandy colondam
 
Getting started with android programming
Getting started with android programmingGetting started with android programming
Getting started with android programmingPERKYTORIALS
 
Introduction to Android Development: Before Getting Started
Introduction to Android Development: Before Getting StartedIntroduction to Android Development: Before Getting Started
Introduction to Android Development: Before Getting StartedAhsanul Karim
 

Viewers also liked (12)

Will robots take our jobs (short version) for Women Techmakers Talk
Will robots take our jobs (short version) for Women Techmakers TalkWill robots take our jobs (short version) for Women Techmakers Talk
Will robots take our jobs (short version) for Women Techmakers Talk
 
Getting Started with Android Application Development
Getting Started with Android Application DevelopmentGetting Started with Android Application Development
Getting Started with Android Application Development
 
Android - Getting started with Android
Android - Getting started with Android Android - Getting started with Android
Android - Getting started with Android
 
Getting Started with Android Development
Getting Started with Android DevelopmentGetting Started with Android Development
Getting Started with Android Development
 
UtilityCostCalcCode
UtilityCostCalcCodeUtilityCostCalcCode
UtilityCostCalcCode
 
Android Livecoding Series
Android Livecoding SeriesAndroid Livecoding Series
Android Livecoding Series
 
[IWIC2015 - PROPOSAL] CALCULATHINGS - A fully customizable calculator for any...
[IWIC2015 - PROPOSAL] CALCULATHINGS - A fully customizable calculator for any...[IWIC2015 - PROPOSAL] CALCULATHINGS - A fully customizable calculator for any...
[IWIC2015 - PROPOSAL] CALCULATHINGS - A fully customizable calculator for any...
 
Simplest calculator app using android studio android workshop
Simplest calculator app using android studio   android workshopSimplest calculator app using android studio   android workshop
Simplest calculator app using android studio android workshop
 
Getting started with android programming
Getting started with android programmingGetting started with android programming
Getting started with android programming
 
Introduction to Android Development: Before Getting Started
Introduction to Android Development: Before Getting StartedIntroduction to Android Development: Before Getting Started
Introduction to Android Development: Before Getting Started
 
The calculator
The calculatorThe calculator
The calculator
 
Robots
RobotsRobots
Robots
 

Similar to Getting started as an android developer

Module-I_Introduction-to-Android.pptx
Module-I_Introduction-to-Android.pptxModule-I_Introduction-to-Android.pptx
Module-I_Introduction-to-Android.pptxlancelotlaytan1996
 
Android Jump Start
Android Jump StartAndroid Jump Start
Android Jump StartHaim Michael
 
App42 Student Lab - Android Game Dev Series V 0.1
App42 Student Lab - Android Game Dev Series V 0.1App42 Student Lab - Android Game Dev Series V 0.1
App42 Student Lab - Android Game Dev Series V 0.1ShepHertz
 
androidPramming.ppt
androidPramming.pptandroidPramming.ppt
androidPramming.pptBijayKc16
 
Android Web app
Android Web app Android Web app
Android Web app Sumit Kumar
 
Seminar on android app development
Seminar on android app developmentSeminar on android app development
Seminar on android app developmentAbhishekKumar4779
 
GDSC FY Orientation.pptx
GDSC FY Orientation.pptxGDSC FY Orientation.pptx
GDSC FY Orientation.pptxGDSCVJTI
 
Which android app development tools deserve your attention this year
Which android app development tools deserve your attention this year  Which android app development tools deserve your attention this year
Which android app development tools deserve your attention this year Moon Technolabs Pvt. Ltd.
 
9780134433646 annuzzi ch02 (1)
9780134433646 annuzzi ch02 (1)9780134433646 annuzzi ch02 (1)
9780134433646 annuzzi ch02 (1)Peter Mburu
 
Creating the first app with android studio
Creating the first app with android studioCreating the first app with android studio
Creating the first app with android studioParinita03
 
android-developer-jobs
android-developer-jobs android-developer-jobs
android-developer-jobs FredReynolds2
 
Mastering the Android Developer Jobs: Essential Questions and Best Practices
Mastering the Android Developer Jobs: Essential Questions and Best PracticesMastering the Android Developer Jobs: Essential Questions and Best Practices
Mastering the Android Developer Jobs: Essential Questions and Best PracticesFredReynolds2
 
Compilation Of C/C++ program in Android
Compilation Of C/C++ program in AndroidCompilation Of C/C++ program in Android
Compilation Of C/C++ program in Androidrahulverma1080
 
Android is a mobile operating system developed by Google, known for its open-...
Android is a mobile operating system developed by Google, known for its open-...Android is a mobile operating system developed by Google, known for its open-...
Android is a mobile operating system developed by Google, known for its open-...AshishChanchal1
 
Android workshop
Android workshopAndroid workshop
Android workshopSagar Patel
 

Similar to Getting started as an android developer (20)

Module-I_Introduction-to-Android.pptx
Module-I_Introduction-to-Android.pptxModule-I_Introduction-to-Android.pptx
Module-I_Introduction-to-Android.pptx
 
Android Jump Start
Android Jump StartAndroid Jump Start
Android Jump Start
 
App42 Student Lab - Android Game Dev Series V 0.1
App42 Student Lab - Android Game Dev Series V 0.1App42 Student Lab - Android Game Dev Series V 0.1
App42 Student Lab - Android Game Dev Series V 0.1
 
androidPramming.ppt
androidPramming.pptandroidPramming.ppt
androidPramming.ppt
 
Android Web app
Android Web app Android Web app
Android Web app
 
Android
Android Android
Android
 
Synapseindia android apps application
Synapseindia android apps applicationSynapseindia android apps application
Synapseindia android apps application
 
Seminar on android app development
Seminar on android app developmentSeminar on android app development
Seminar on android app development
 
Android
AndroidAndroid
Android
 
GDSC FY Orientation.pptx
GDSC FY Orientation.pptxGDSC FY Orientation.pptx
GDSC FY Orientation.pptx
 
Which android app development tools deserve your attention this year
Which android app development tools deserve your attention this year  Which android app development tools deserve your attention this year
Which android app development tools deserve your attention this year
 
9780134433646 annuzzi ch02 (1)
9780134433646 annuzzi ch02 (1)9780134433646 annuzzi ch02 (1)
9780134433646 annuzzi ch02 (1)
 
Creating the first app with android studio
Creating the first app with android studioCreating the first app with android studio
Creating the first app with android studio
 
Android class provider in mumbai
Android class provider in mumbaiAndroid class provider in mumbai
Android class provider in mumbai
 
Getting started with android studio
Getting started with android studioGetting started with android studio
Getting started with android studio
 
android-developer-jobs
android-developer-jobs android-developer-jobs
android-developer-jobs
 
Mastering the Android Developer Jobs: Essential Questions and Best Practices
Mastering the Android Developer Jobs: Essential Questions and Best PracticesMastering the Android Developer Jobs: Essential Questions and Best Practices
Mastering the Android Developer Jobs: Essential Questions and Best Practices
 
Compilation Of C/C++ program in Android
Compilation Of C/C++ program in AndroidCompilation Of C/C++ program in Android
Compilation Of C/C++ program in Android
 
Android is a mobile operating system developed by Google, known for its open-...
Android is a mobile operating system developed by Google, known for its open-...Android is a mobile operating system developed by Google, known for its open-...
Android is a mobile operating system developed by Google, known for its open-...
 
Android workshop
Android workshopAndroid workshop
Android workshop
 

Recently uploaded

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdfChristopherTHyatt
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 

Recently uploaded (20)

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdf
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 

Getting started as an android developer

  • 1. Getting Started as an Android Developer Stani Meredith Web & Mobile Faculty, Seattle Central College Email: Stanislava.Meredith@seattlecolleges.edu @StaniMeredith
  • 2.
  • 3. Why Android? ● Android's dominating market share, its open source license to device manufacturers, and its open source development model make it a great choice for starting out as a mobile developer. ● It can be expected that the demand for Android developers will continue to grow.
  • 4. ● As an Android Developer you can develop for a wide array of devices ranging from phones and tablets to wearables, home and vehicle systems. ● You develop a variety of apps such as games, news, photography, education or shopping apps, to name a few.
  • 5. Android Developer Career Paths There is a great demand for contract or in house Android developers. Some of the core skills for entry level developers include programming with Java, using the Android SDK, Android Studio, Gradle, and Git as well as familiarity with agile methodologies.
  • 6. You can also deploy and monetize your app our app through a marketplace such as Google Play, Amazon Appstore or directly to users via a website. *At this time there is a $25 registration fee to register with Google Play.
  • 7.
  • 8. Prerequisite Coding Skills: In order to be successful with Android programming, you should already have background in the following languages: ● XML: (eXtensible Markup Language) is used to store data.
  • 9.
  • 10. ● Java: You need to have solid programming skills in Java basics and also be versed with Object Oriented Programming in Java.
  • 11.
  • 12. ● SQL: You need to have basic working knowledge of databases, such as writing Create Read Update Delete queries. (Android comes with the popular embedded SQLite database).
  • 13. IDE To develop Android Apps you need to use an IDE (Integrated Development Environment). Android Studio, which is now the official IDE for developing Android Apps. Be sure to check out the many helpful samples which come with the SDK.
  • 14.
  • 15. Android Studio and the SDK are available for free download and cross platform compatible. https://developer.android.com/studio/index.html
  • 16. To learn more... For the most basic introduction see Android's Building Your First App If you are self motivated you can try using the Udacity Android Beginner course:
  • 17. Take a class at Seattle Central College https://mycentral.seattlecolleges.edu/ or at another local college. ● ITC 115 Object Oriented Programming with Java ● ITC 162 Introduction to Android Programming ● ITC 298 Android Capstone Project
  • 19. Introduction to Java - the programming language used to build Android apps ● Java is a high-level programming language originally developed by Sun Microsystems and released in 1995. ● Java runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX. ●
  • 20. ● We will use an online Java compiler to quickly type and test our code. ● Normally you need to download Java to your machine in order to code and run Java programs. This is a temporary, quick start too we can use for now: https://www.compilejava.net/
  • 21. Example 1 - Hello World //this is my first java program public class HelloWorld { public static void main(String []args) { System.out.println("Hello World"); } }
  • 22. Example 2 - Bill Calculator public class BillCalculator { public static void main(String[] args) { //this is a one line comment System.out.println("Your bill from Jane's restaurant"); System.out.println(); /* this is a multiline comment * declare variables with different data types */
  • 23. String item = "Breakfast Special"; double price = 7.99; int servings = 2; // calculate the tax and the total double tax = 0.1 * price; double total = (price + tax) * servings;
  • 24. //store the output in a string String bill = "Order Item: " + item + "n" + "Price: $" + price + "n" + "Servings: " + servings + "n" + "Tax: " + tax + "n" + "TOTAL: " + total;
  • 25. //print the output to the console System.out.println (bill); System.out.println("Thanks!"); } }
  • 26. Tip Calculator App in Android Studio Following are selected screenshots of the Tip Calculator app, as it’s being developed and tested in the emulator in Android Studio.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31. Thanks and best of luck with your coding adventures Learning Android programming and keeping up with constant updates from Google can be challenging, but it is also fun and rewarding.