SlideShare a Scribd company logo
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Version(s) API Level(s) Year(s) SDK Notes / New Features
1.0-1.1 1-2 2008-2009 First releases, Android Market
1.5 “Cupcake” 3 2009 3rd party keyboards, Widgets
1.6 “Donut” 4 2009 Speech engine
2.0-2.1 “Éclair” 5-7 2009 HTML5, Bluetooth API, Multi-touch SDK
2.2 “Froyo” 8 2010 Performance, JIT,V8 engine, push notifications, Hi-DPI
2.3 “Gingerbread” 9-10 2010-2011 New UI,WXGA,VoIP, NFC, multiple cameras,
concurrent GC, more sensors supported
3.0-3.2 “Honeycomb” 11-13 2011 Holo UI, tablets only, System bar, Action bar, two-pane
UI, multi-core processors, external keyboards/mice
Version(s) API Level(s) Year(s) SDK Notes / New Features
4.0 “Ice Cream Sandwich” 14-15 2011 Brings 3.x features to phones, speech to text
4.1-4.3 “Jelly Bean” 16-18 2012-2013 “Project Butter”, expandable notifications, 7”
tablet UI, geofencing, native emojis
4.4 “KitKat” 19 2013 Low RAM device support, cleaner Holo UI,
immersive mode apps,WebView uses
Chromium, Storage Access Framework, UI
transition framework
4.4W “KitKat” 20 2013 Wearable extensions (smartwatches)
5.0-5.1 “Lollipop” 21-22 2014-2015 Android Runtime (ART), 64-bit support, vector
drawables, Material Design,WebView updated
through Play Store
6.0 “Marshmallow” 23 2015 Data backup/restore for apps, in-app
permission checks
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
C# Keyword / Usage Java Keyword / Usage
bool boolean
string <none> (use String type)
namespace (block scoped) package (file scoped)
using (a namespace or “static”) import (a package, class, or wildcard)
base super
MyClass : MyBaseClass, IMyInterface MyClass extends MyBaseClass implements MyInterface
const (field) static final
readonly final
sealed final
<none> (variable used in lambda) final (variable used in anonymous inner class)
is instanceof
lock synchronized
foreach (Type item in collection) for (Type item : collection)
typeof(MyClass) MyClass.class
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
.NETType JavaType
IEnumerable, IEnumerable<T> Iterable<T>
IEnumerator, IEnumerator<T> Iterator<T>
IList, IList<T> List<E>
List<T> ArrayList<E> implements List<E>
IDictionary<TKey,TValue> Map<K,V>
Dictionary<TKey,TValue> HashMap<K,V> implements Map<K,V>
KeyValuePair<TKey,TValue> Map.Entry<K,V>
ICollection<T> Collection<E>
ISet<T> Set<E>
HashSet<T> HashSet<E> implements Set<E>
.NETType JavaType(s)
System.Guid java.util.UUID
System.DateTime java.util.Date
System.IDisposable java.io.Closeable
System.ISerializable java.io.Serializable
System.IO.Stream java.io.InputStream, java.io.OutputStream
System.Type java.lang.Class<T>
System.Uri java.net.URI, java.net.URL, android.net.Uri
System.Text.RegularExpressions.Regex java.util.regex.Matcher, java.util.regex.Pattern
Android Crash Course Lunch and Learn
Notice: final keyword, MainActivity.this, and thatView.OnClickListener is an interface
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
EmailActivity
EmailListFragment
EmailActivity
EmailListFragment EmailMessageFragment
Phone UI Tablet UI
EmailMessageFragment
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
http://developer.android.com/guide/topics/ui/menus.html
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
http://developer.android.com/training/basics/activity-lifecycle/starting.html
Lifetime First Call Final Call
Entire Lifetime onCreate onDestroy
Visible Lifetime onStart onStop
Foreground Lifetime onResume onPause
Lifecycle Method Next Method Common Usage
onCreate onStart Set up activity’s view, get view references
(findViewById), restore instance state
onStart onResume or onStop (rare)
onRestart onStart (rare)
onResume onPause Start any timers or CPU-consuming tasks, refresh UI
elements, play audio/video
onPause onResume or onStop Pause any timers or CPU-consuming tasks, pause
audio/video
onStop onRestart or onDestroy (rare) Clean up your activity
onDestroy nothing (rare) Clean up your activity
* onSaveInstanceState Save instance state (duh)
* onRestoreInstanceState (rare) Restore instance state (duh)
* Not part of previous diagram
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Intent Action (public static final String) Example Usage
Intent.ACTION_VIEW Open URL
Intent.ACTION_ATTACH_DATA Attach photo to a contact
Intent.ACTION_EDIT Edit a calendar entry
Intent.ACTION_PICK Pick a file from a directory
Intent.ACTION_DIAL Call a number
Intent.ACTION_SEND Share something (system share chooser)
Intent.ACTION_SEARCH Perform a system search
Intent.ACTION_WEB_SEARCH Perform a web search
MediaStore.ACTION_IMAGE_CAPTURE Take a photo with the camera (default app)
MediaStore.ACTION_VIDEO_CAPTURE Record a video with the camera (default app)
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Permission Group Permissions
CALENDAR READ_CALENDAR,WRITE_CALENDAR
CAMERA CAMERA
CONTACTS READ_CONTACTS,WRITE_CONTACTS, GET_ACCOUNTS
LOCATION ACCESS_FINE_LOCATION,ACCESS_COARSE_LOCATION
MICROPHONE RECORD_AUDIO
PHONE READ_PHONE_STATE, CALL_PHONE, READ_CALL_LOG,WRITE_CALL_LOG,
ADD_VOICEMAIL,USE_SIP, PROCESS_OUTGOING_CALLS
SENSORS BODY_SENSORS
SMS SEND_SMS, RECEIVE_SMS, READ_SMS, RECEIVE_WAP_PUSH, RECEIVE_MMS
STORAGE READ_EXTERNAL_STORAGE,WRITE_EXTERNAL_STORAGE
Android Crash Course Lunch and Learn
Directive Example Description
compileSdkVersion compileSdkVersion 23 Which API level this is compiled against
buildToolsVersion buildToolsVersion “21.1.2” Android BuildTools installed version
applicationId applicationId “com.feature23.hello” The unique app ID, used by the OS
minSdkVersion minSdkVersion 19 App won’t run on devices below this
targetSdkVersion targetSdkVersion 23 Which API level this app is tested
against
versionCode versionCode 2 Integer version code, must increment
each release, no decimal places
versionName versionName “1.01” User-friendly version number
compile compile
'com.google.code.gson:gson:2.4'
Add a Maven dependency
compile files('libs/coollection-
0.2.0.jar')
Add a jar dependency
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn
Android Crash Course Lunch and Learn

More Related Content

PPTX
Windows 7 For Developers
PPTX
Applico Android Info Session at Columbia University
PPTX
Introduction to MonoTouch
ODP
OzAltNet Fast-ANDroid-furious
PPTX
Android Mp3 Player
PPTX
Android mp3 player
PPTX
SubmitJS: Developing desktop applications with Electron. Mykyta Semenistyi
PPTX
Android session notes
Windows 7 For Developers
Applico Android Info Session at Columbia University
Introduction to MonoTouch
OzAltNet Fast-ANDroid-furious
Android Mp3 Player
Android mp3 player
SubmitJS: Developing desktop applications with Electron. Mykyta Semenistyi
Android session notes

Similar to Android Crash Course Lunch and Learn (20)

PDF
Cucumber meets iPhone
PDF
Plattformübergreifende App-Entwicklung (ein Vergleich) - MobileTechCon 2010
PPT
Create Cross-Platform Native Mobile Apps in Flex with ELIPS Studio
PDF
[1D1]신개념 N스크린 웹 앱 프레임워크 PARS
PPT
Html5 investigation
PDF
Apps development for Recon HUDs
PPTX
Android terminologies
PPTX
My customers are using iPhone/Android, but I'm a Microsoft Guy.
PDF
Functional Requirements Of System Requirements
PDF
Android - Open Source Bridge 2011
PDF
Android 3.1 - Portland Code Camp 2011
PDF
Fixing the mobile web - Internet World Romania
PPTX
Chapter One - Introduction to Mobile Oses
PPTX
Lecture1
PPTX
Building solutions on the Microsoft platform that target iPhone, iPad, and An...
ODP
Plug yourself in and your app will never be the same (1 hr edition)
PPTX
Windows phone 7 application development
PDF
Android 3.0 Portland Java User Group 2011-03-15
PDF
Develop for Windows Phone Mango and Windows 8: our Tips
PPT
Intro to Android Programming
Cucumber meets iPhone
Plattformübergreifende App-Entwicklung (ein Vergleich) - MobileTechCon 2010
Create Cross-Platform Native Mobile Apps in Flex with ELIPS Studio
[1D1]신개념 N스크린 웹 앱 프레임워크 PARS
Html5 investigation
Apps development for Recon HUDs
Android terminologies
My customers are using iPhone/Android, but I'm a Microsoft Guy.
Functional Requirements Of System Requirements
Android - Open Source Bridge 2011
Android 3.1 - Portland Code Camp 2011
Fixing the mobile web - Internet World Romania
Chapter One - Introduction to Mobile Oses
Lecture1
Building solutions on the Microsoft platform that target iPhone, iPad, and An...
Plug yourself in and your app will never be the same (1 hr edition)
Windows phone 7 application development
Android 3.0 Portland Java User Group 2011-03-15
Develop for Windows Phone Mango and Windows 8: our Tips
Intro to Android Programming
Ad

Recently uploaded (20)

PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Machine learning based COVID-19 study performance prediction
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPT
Teaching material agriculture food technology
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
MIND Revenue Release Quarter 2 2025 Press Release
20250228 LYD VKU AI Blended-Learning.pptx
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Advanced methodologies resolving dimensionality complications for autism neur...
Machine learning based COVID-19 study performance prediction
Digital-Transformation-Roadmap-for-Companies.pptx
Teaching material agriculture food technology
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Review of recent advances in non-invasive hemoglobin estimation
Reach Out and Touch Someone: Haptics and Empathic Computing
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
The Rise and Fall of 3GPP – Time for a Sabbatical?
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Spectral efficient network and resource selection model in 5G networks
Diabetes mellitus diagnosis method based random forest with bat algorithm
Dropbox Q2 2025 Financial Results & Investor Presentation
Encapsulation_ Review paper, used for researhc scholars
MIND Revenue Release Quarter 2 2025 Press Release
Ad

Android Crash Course Lunch and Learn

  • 3. Version(s) API Level(s) Year(s) SDK Notes / New Features 1.0-1.1 1-2 2008-2009 First releases, Android Market 1.5 “Cupcake” 3 2009 3rd party keyboards, Widgets 1.6 “Donut” 4 2009 Speech engine 2.0-2.1 “Éclair” 5-7 2009 HTML5, Bluetooth API, Multi-touch SDK 2.2 “Froyo” 8 2010 Performance, JIT,V8 engine, push notifications, Hi-DPI 2.3 “Gingerbread” 9-10 2010-2011 New UI,WXGA,VoIP, NFC, multiple cameras, concurrent GC, more sensors supported 3.0-3.2 “Honeycomb” 11-13 2011 Holo UI, tablets only, System bar, Action bar, two-pane UI, multi-core processors, external keyboards/mice
  • 4. Version(s) API Level(s) Year(s) SDK Notes / New Features 4.0 “Ice Cream Sandwich” 14-15 2011 Brings 3.x features to phones, speech to text 4.1-4.3 “Jelly Bean” 16-18 2012-2013 “Project Butter”, expandable notifications, 7” tablet UI, geofencing, native emojis 4.4 “KitKat” 19 2013 Low RAM device support, cleaner Holo UI, immersive mode apps,WebView uses Chromium, Storage Access Framework, UI transition framework 4.4W “KitKat” 20 2013 Wearable extensions (smartwatches) 5.0-5.1 “Lollipop” 21-22 2014-2015 Android Runtime (ART), 64-bit support, vector drawables, Material Design,WebView updated through Play Store 6.0 “Marshmallow” 23 2015 Data backup/restore for apps, in-app permission checks
  • 16. C# Keyword / Usage Java Keyword / Usage bool boolean string <none> (use String type) namespace (block scoped) package (file scoped) using (a namespace or “static”) import (a package, class, or wildcard) base super MyClass : MyBaseClass, IMyInterface MyClass extends MyBaseClass implements MyInterface const (field) static final readonly final sealed final <none> (variable used in lambda) final (variable used in anonymous inner class) is instanceof lock synchronized foreach (Type item in collection) for (Type item : collection) typeof(MyClass) MyClass.class
  • 21. .NETType JavaType IEnumerable, IEnumerable<T> Iterable<T> IEnumerator, IEnumerator<T> Iterator<T> IList, IList<T> List<E> List<T> ArrayList<E> implements List<E> IDictionary<TKey,TValue> Map<K,V> Dictionary<TKey,TValue> HashMap<K,V> implements Map<K,V> KeyValuePair<TKey,TValue> Map.Entry<K,V> ICollection<T> Collection<E> ISet<T> Set<E> HashSet<T> HashSet<E> implements Set<E>
  • 22. .NETType JavaType(s) System.Guid java.util.UUID System.DateTime java.util.Date System.IDisposable java.io.Closeable System.ISerializable java.io.Serializable System.IO.Stream java.io.InputStream, java.io.OutputStream System.Type java.lang.Class<T> System.Uri java.net.URI, java.net.URL, android.net.Uri System.Text.RegularExpressions.Regex java.util.regex.Matcher, java.util.regex.Pattern
  • 24. Notice: final keyword, MainActivity.this, and thatView.OnClickListener is an interface
  • 38. Lifetime First Call Final Call Entire Lifetime onCreate onDestroy Visible Lifetime onStart onStop Foreground Lifetime onResume onPause
  • 39. Lifecycle Method Next Method Common Usage onCreate onStart Set up activity’s view, get view references (findViewById), restore instance state onStart onResume or onStop (rare) onRestart onStart (rare) onResume onPause Start any timers or CPU-consuming tasks, refresh UI elements, play audio/video onPause onResume or onStop Pause any timers or CPU-consuming tasks, pause audio/video onStop onRestart or onDestroy (rare) Clean up your activity onDestroy nothing (rare) Clean up your activity * onSaveInstanceState Save instance state (duh) * onRestoreInstanceState (rare) Restore instance state (duh) * Not part of previous diagram
  • 48. Intent Action (public static final String) Example Usage Intent.ACTION_VIEW Open URL Intent.ACTION_ATTACH_DATA Attach photo to a contact Intent.ACTION_EDIT Edit a calendar entry Intent.ACTION_PICK Pick a file from a directory Intent.ACTION_DIAL Call a number Intent.ACTION_SEND Share something (system share chooser) Intent.ACTION_SEARCH Perform a system search Intent.ACTION_WEB_SEARCH Perform a web search MediaStore.ACTION_IMAGE_CAPTURE Take a photo with the camera (default app) MediaStore.ACTION_VIDEO_CAPTURE Record a video with the camera (default app)
  • 57. Permission Group Permissions CALENDAR READ_CALENDAR,WRITE_CALENDAR CAMERA CAMERA CONTACTS READ_CONTACTS,WRITE_CONTACTS, GET_ACCOUNTS LOCATION ACCESS_FINE_LOCATION,ACCESS_COARSE_LOCATION MICROPHONE RECORD_AUDIO PHONE READ_PHONE_STATE, CALL_PHONE, READ_CALL_LOG,WRITE_CALL_LOG, ADD_VOICEMAIL,USE_SIP, PROCESS_OUTGOING_CALLS SENSORS BODY_SENSORS SMS SEND_SMS, RECEIVE_SMS, READ_SMS, RECEIVE_WAP_PUSH, RECEIVE_MMS STORAGE READ_EXTERNAL_STORAGE,WRITE_EXTERNAL_STORAGE
  • 59. Directive Example Description compileSdkVersion compileSdkVersion 23 Which API level this is compiled against buildToolsVersion buildToolsVersion “21.1.2” Android BuildTools installed version applicationId applicationId “com.feature23.hello” The unique app ID, used by the OS minSdkVersion minSdkVersion 19 App won’t run on devices below this targetSdkVersion targetSdkVersion 23 Which API level this app is tested against versionCode versionCode 2 Integer version code, must increment each release, no decimal places versionName versionName “1.01” User-friendly version number compile compile 'com.google.code.gson:gson:2.4' Add a Maven dependency compile files('libs/coollection- 0.2.0.jar') Add a jar dependency