Introduction To Android Development.pptx

adeltarek088 48 views 6 slides May 24, 2024
Slide 1
Slide 1 of 6
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6

About This Presentation

Title: Starting Your Journey in Android Development

Introduction

Title: Welcome to Android Development!
Briefly introduce the topic and set the stage for the presentation.
Motivate the audience by highlighting the opportunities and excitement in Android development.
Why Choose Android Development...


Slide Content

Introduction To Android Development - Build an App! http://simpledeveloper.com @Eenvincible

Tools of Trade Java Runtime Environment http://bit.ly/bMkbpo Android SDK http://bit.ly/3jNWwL Eclipse IDE http://bit.ly/5YPO6 ADT Plugin for Eclipse http://bit.ly/LEzF6s SETUP

Simple Setup Step 1 - Download the Java Runtime Environment if you don't have one already! Step 2 - I recommend you download the SDK Bundle instead of downloading the tools separately. Step 3 - If you chose not to download the bundle, download Android SDK , Eclipse and then from within Eclipse, Install the ADT Plugin and you will be ready to go.

Android: What Comes In The Box Every Android SDK Download Comes With : The Android APIs Development Tools The Android Emulator Full Documentation Sample Code Online Support

Types of Android Applications Foreground Activity Only useful when in foreground Background Activity Limited interaction except during config Intermittent Activity Expects interaction but works background

Your Very First Activity Every Activity is a subclass of the Activity class The simplest Android application project will have an activity like this: import android.app.Activity; import android.os.Bundle; public class HelloWorld extends Activity{ /*called when activity is created*/ @override public void onCreate(Bundle icicle){ super.onCreate(icicle); setContentView(R.layout.main); } }