SlideShare a Scribd company logo
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
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
.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
Notice: final keyword, MainActivity.this, and thatView.OnClickListener is an interface
EmailActivity
EmailListFragment
EmailActivity
EmailListFragment EmailMessageFragment
Phone UI Tablet UI
EmailMessageFragment
http://developer.android.com/guide/topics/ui/menus.html
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
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)
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
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

Similar to Android Crash Course Lunch and Learn

Cucumber meets iPhone
Cucumber meets iPhoneCucumber meets iPhone
Cucumber meets iPhone
Erin Dees
 
Plattformübergreifende App-Entwicklung (ein Vergleich) - MobileTechCon 2010
Plattformübergreifende App-Entwicklung (ein Vergleich) - MobileTechCon 2010Plattformübergreifende App-Entwicklung (ein Vergleich) - MobileTechCon 2010
Plattformübergreifende App-Entwicklung (ein Vergleich) - MobileTechCon 2010
Heiko Behrens
 
Create Cross-Platform Native Mobile Apps in Flex with ELIPS Studio
Create Cross-Platform Native Mobile Apps in Flex with ELIPS StudioCreate Cross-Platform Native Mobile Apps in Flex with ELIPS Studio
Create Cross-Platform Native Mobile Apps in Flex with ELIPS Studio
Guilhem Ensuque
 
[1D1]신개념 N스크린 웹 앱 프레임워크 PARS
[1D1]신개념 N스크린 웹 앱 프레임워크 PARS[1D1]신개념 N스크린 웹 앱 프레임워크 PARS
[1D1]신개념 N스크린 웹 앱 프레임워크 PARS
NAVER D2
 
Html5 investigation
Html5 investigationHtml5 investigation
Html5 investigation
oppokui
 
Apps development for Recon HUDs
Apps development for Recon HUDsApps development for Recon HUDs
Apps development for Recon HUDs
Xavier Hallade
 
Android terminologies
Android terminologiesAndroid terminologies
Android terminologies
jerry vasoya
 
My customers are using iPhone/Android, but I'm a Microsoft Guy.
My customers are using iPhone/Android, but I'm a Microsoft Guy.My customers are using iPhone/Android, but I'm a Microsoft Guy.
My customers are using iPhone/Android, but I'm a Microsoft Guy.
Simon Guest
 
Functional Requirements Of System Requirements
Functional Requirements Of System RequirementsFunctional Requirements Of System Requirements
Functional Requirements Of System Requirements
Laura Arrigo
 
Android - Open Source Bridge 2011
Android - Open Source Bridge 2011Android - Open Source Bridge 2011
Android - Open Source Bridge 2011
sullis
 
Android 3.1 - Portland Code Camp 2011
Android 3.1 - Portland Code Camp 2011Android 3.1 - Portland Code Camp 2011
Android 3.1 - Portland Code Camp 2011
sullis
 
Fixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaFixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaChristian Heilmann
 
Building solutions on the Microsoft platform that target iPhone, iPad, and An...
Building solutions on the Microsoft platform that target iPhone, iPad, and An...Building solutions on the Microsoft platform that target iPhone, iPad, and An...
Building solutions on the Microsoft platform that target iPhone, iPad, and An...
Simon Guest
 
Plug yourself in and your app will never be the same (1 hr edition)
Plug yourself in and your app will never be the same (1 hr edition)Plug yourself in and your app will never be the same (1 hr edition)
Plug yourself in and your app will never be the same (1 hr edition)
Mikkel Flindt Heisterberg
 
Windows phone 7 application development
Windows phone 7 application developmentWindows phone 7 application development
Windows phone 7 application development
Mannu Malhotra
 
Android 3.0 Portland Java User Group 2011-03-15
Android 3.0 Portland Java User Group 2011-03-15Android 3.0 Portland Java User Group 2011-03-15
Android 3.0 Portland Java User Group 2011-03-15
sullis
 
Develop for Windows Phone Mango and Windows 8: our Tips
Develop for Windows Phone Mango and Windows 8: our TipsDevelop for Windows Phone Mango and Windows 8: our Tips
Develop for Windows Phone Mango and Windows 8: our TipsSoumow Dollon
 
Intro to Android Programming
Intro to Android ProgrammingIntro to Android Programming
Intro to Android Programming
Peter van der Linden
 
Go mobile with Windows Phone
Go mobile with Windows PhoneGo mobile with Windows Phone
Go mobile with Windows PhoneDima Maleev
 

Similar to Android Crash Course Lunch and Learn (20)

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

Recently uploaded

Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Paige Cruz
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
mikeeftimakis1
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
KAMESHS29
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Aggregage
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 
Quantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsQuantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIs
Vlad Stirbu
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
UiPathCommunity
 
Enhancing Performance with Globus and the Science DMZ
Enhancing Performance with Globus and the Science DMZEnhancing Performance with Globus and the Science DMZ
Enhancing Performance with Globus and the Science DMZ
Globus
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
Pierluigi Pugliese
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
Ralf Eggert
 

Recently uploaded (20)

Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 
Quantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsQuantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIs
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
 
Enhancing Performance with Globus and the Science DMZ
Enhancing Performance with Globus and the Science DMZEnhancing Performance with Globus and the Science DMZ
Enhancing Performance with Globus and the Science DMZ
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
 

Android Crash Course Lunch and Learn

  • 1.
  • 2.
  • 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
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 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
  • 17.
  • 18.
  • 19.
  • 20.
  • 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
  • 23.
  • 24. Notice: final keyword, MainActivity.this, and thatView.OnClickListener is an interface
  • 25.
  • 26.
  • 27.
  • 29.
  • 30.
  • 31.
  • 33.
  • 34.
  • 35.
  • 36.
  • 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
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 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)
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 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
  • 58.
  • 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