intro to android development ben lafreniere. getting up and running don’t use the vm! ...

20
Intro to Android Development Ben Lafreniere

Upload: emma-craig

Post on 28-Dec-2015

219 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Intro to Android Development

Ben Lafreniere

Page 2: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Getting up and running• Don’t use the VM!• http://developer.android.com/resources/tutor

ials/hello-world.html• Steps:– Install Eclipse– Install the Android Development Tools (ADT)

plugin– Install the Android SDK (may be optional)– Create an emulator– Hello world!

Page 3: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Download and Install Eclipse• Eclipse has many versions!• Go with Eclipse Classic

(32- or 64-bit depending on your system)• http://www.eclipse.org/downloads

Page 4: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Install ADT plugin

• http://developer.android.com/sdk/eclipse-adt.html#installing

Page 5: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Download and Install the Android SDK

• http://developer.android.com/sdk/index.html

Page 6: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Use SDK Manager to install APIs

• Why so many SDK versions?– Android is a UI toolkit being incrementally

developed before our eyes

• Install and use Android 2.3.3 SDK (API 10)– Because these are the phones we’ll be marking on

Page 7: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Video walkthrough

• anddev_installing.avi

Page 8: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Creating an emulator

• Not all developers have android devices– So we emulate one!

• Video– anddev_create_emu.avi

Page 9: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Developing with the Emulator

• Emulator takes a long time to boot up– Enabling the ‘Snapshot’ option speeds things up

by saving the emulator’s state when it’s closed, and restoring it when it’s started again

• You can keep the emulator open between runs

• Don’t develop on the VM!(the emulator will run way too slow)

Page 10: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Android Programming

Page 11: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Creating an Android project• http://developer.android.com/resources/tutorials/hello-

world.html

Page 12: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Hello World!

• HelloAndroidActivity.java

Page 13: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Android App Anatomy – Classes

• Activity – A single screen of the application

• View – The superclass for widgets(the UI is made up of a tree of View objects)

• Intent – An action that must be performed

Page 14: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Activities

• A single, focused thing that the user can do• Should use an Activity for each screen of the

application• Activities must be declared in the Manifest file

Page 15: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Views

• Superclass of all Android widgets(similar to java.awt.Component in Swing)

Page 16: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Views

• Superclass of all Android widgets(similar to the Component class from Swing)

Page 17: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Intents• Abstract description of an action that the user

wants to perform (e.g. open a webpage,share a picture)

• Used to transition betweenActivities

• Includes the intended action,and may include data

Page 18: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Code Examples• HelloAndroid – One Activity, One TextView,

very simple

• FormExample – Two Activities, using an Intent to start a second Activity

• DataPassExample – Builds on FormExample, using Intents to pass data between Activities

Page 19: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Much more

• Using XML layouts to separate presentation from logic

• Using strings.xml in lieu of hard-coded strings

• Saving the application’s state when an activity is paused

Page 20: Intro to Android Development Ben Lafreniere. Getting up and running Don’t use the VM!  ials/hello-world.html

Useful references• Android Developers

http://developer.android.com• Tutorials section

http://developer.android.com/resources/browser.html?tag=tutorial

• Notebook tutorial (detailed multi-Activity example)http://developer.android.com/resources/tutorials/notepad/index.html

• Common taskshttp://developer.android.com/resources/faq/commontasks.html