my first android application

14
My first Android App By Benjamin Monjoie Created for the Java Lab SF http://www.javalabsf.net

Upload: javalabsf

Post on 20-Jun-2015

543 views

Category:

Documents


4 download

TRANSCRIPT

Page 1: My First Android Application

My first Android App

By Benjamin MonjoieCreated for the Java Lab SF

http://www.javalabsf.net

Page 2: My First Android Application

            Road map

1.Why Android ?2.Environment3.My first project4.My first screen5.Interact with the button6.Make a new window7.Make a simple list8.Conclusion

Page 3: My First Android Application

Why Android ?

• Google• Java• Easy development• Good documentation• iPhone killer• ...

Page 4: My First Android Application

Environment

Eclipse + SDK

SDK runs on Windows, Mac OS, Linux

Easy installation, more information on :

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

Page 5: My First Android Application

My first project

Page 6: My First Android Application

My first project

Page 7: My First Android Application

My first screen

Page 8: My First Android Application

Interact with the button

First solution : in the layout

main.xml MyfirstApp.java

Page 9: My First Android Application

Interact with the button

Second solution : in the code

MyfirstApp.java

Page 10: My First Android Application

Make a new window

NewWindow.java

AndroidManifest.xml

Page 11: My First Android Application

Make a new window

MyfirstApp.java

Page 12: My First Android Application

Make a simple list

NewWindow.java

Page 13: My First Android Application

Make a simple list

newwindow.xml liste.xml

Page 14: My First Android Application

Conclusion