13
Presented by:

Android presentation

Embed Size (px)

DESCRIPTION

Brief presentation for the first step to android

Citation preview

Page 1: Android presentation

Presented by:

Page 2: Android presentation

IntroductionPresentation

Environment & tools

Components of Android

Configuration

•Android is not just an operating system•Middleware•Applications

User interface : Devlopment

1

•Applications•Platformbright and complex.•Extensible and modular•Customizable

User interface : Devlopment

Page 3: Android presentation

Introduction

Presentation

Environment & tools

Components of Android

User interface : Devlopment

Configuration

2

User interface : Devlopment

Page 4: Android presentation

• JDK : jdk 5 – 6

Introduction

Presentation

Environment & tools

Components of Android

User interface : Devlopment

Configuration

3

• IDE : eclipse / netbeans

• SDK: android / undroid

User interface : Devlopment

Page 5: Android presentation

Activity

Intent

Introduction

Presentation

Environment & tools

Components of Android

User interface : Devlopment

Configuration

4

Broadcast

Receiver

Content Provider

Service

User interface : Devlopment

Page 6: Android presentation

Introduction

Presentation

Environment & tools

Components of Android

ConfigurationUser interface : Devlopment

• Install the jdk

• Download the sdk (android)

• Add directory <directory_sd k>\tools

environment variable (path)

• Installation of plugin’s eclipse

5

User interface : Devlopment • Installation of plugin’s eclipse* Help > Software Updates > Find and Install

* Search for new features to install > Next.

* New Remote Site.add the following url :

https://dlssl.google.com/android/eclipse/.> ok

• Restart eclipse

* window > preference > android > browse

Page 7: Android presentation

Introduction

Presentation

Environment & tools

Components of Android

ConfigurationUser interface : Devlopment

6

User interface : Devlopment

Page 8: Android presentation

Introduction

Presentation

Environment & tools

Components of Android

ConfigurationUser interface : Devlopment

7

User interface : Devlopment

Page 9: Android presentation

Introduction

Presentation

Environment & tools

Components of Android

User interface : Devlopment

Configuration

8

User interface : Devlopment

Page 10: Android presentation

� what about a sample of code ?

Introduction

Presentation

Environment & tools

Components of Android

User interface : Devlopment

Configuration

9

User interface : Devlopment

Page 11: Android presentation

ToggleBoutton

<ToggleButton

android:id="@+id/toggle1"

android:layout_width="wrap

_content"

android:layout_height="wrap

Introduction

Presentation

Environment & tools

Components of Android

User interface : Devlopment

Configuration

10

android:layout_height="wrap

_content" />

User interface : Devlopment

Page 12: Android presentation

<CheckBox

android:id="@+id/chkAutosave"

android:layout_width="fill_parent

"

android:layout_height="wrap_con

Checkbox

Introduction

Presentation

Environment & tools

Components of Android

User interface : Devlopment

Configuration

11

android:layout_height="wrap_con

tent" android:text="Autosave" />

User interface : Devlopment

Page 13: Android presentation