SlideShare ist ein Scribd-Unternehmen logo
1 von 37
Android Development
Training for Beginners
FIRST DAY MODULE




            By: Joemarie Comeros Amparo
Outline:
   Overview on Android
   Installing ADT on Eclipse
   Explore Project Components
   Sample Android Project
   Running Android Project
Android is an open mobile phone platform that was
   developed by Google and later by Open Handset
   Alliance. Google defines Android as a "software
   stack" for mobile phones.

Software stack is made up of operating system(the
   platform on which everything runs), the middleware
   (the programming that allows applications to talk to
   a network and to one another) and the applications
   (the actual programs that phone will run)
July 2005 - Google Inc. bought from Danger Inc.

Open Handset Alliance was formed headed by Google
  which is composed of companies like Intel, T-
  Mobile, Spring Nextel and more.

In 2008, Android became available as an open source
    and ASOP(Android Open Source Project) is
    responsible for maintaining and development of
    android.

February 2009, the first android version was
   released, Android 1.1. for Mobile G1.
   Android   1.1
   Android   1.5 Cupcake
   Android   1.6 Donut
   Android   2.0/2.1 Eclair
   Android   2.2.x Froyo
   Android   2.3.x Gingerbread
   Android   3. x Honeycomb
   Android   4.0.x Ice Cream Sandwich
   Android   4.1 Jelly Bean
Note: When developing an application, consider the market share of the android version. The
higher the market share, the higher number your target market is.
Note: Based on my development experience, ADT can run on at least Dual Core with at
least 2GB RAM.
Please refer to:
       www.developershaven.net
Activity
• Present a visual user interface for one focused endeavor the user can undertake
• Example: a list of menu items users can choose from

    Services
• Run in the background for an indefinite period of time
• Example: calculate and provide the result to activities that need it

   Broadcast Receivers
• Receive and react to broadcast announcements
• Example: announcements that the time zone has changed

 Content Providers
• Store and retrieve data and make it accessible to all applications
• Example: Android ships with a number of content providers for common

     Intents
• Hold the content of a message
• Example: convey a request for an activity to present an image to the user or let
  the user edit some text
public class CCSActivity extends Activity
{
   @Override
   public void onCreate(Bundle
                 savedInstanceState)
  {
     super.onCreate(savedInstanceState);
     setContentView(R.layout.main);
   }
}
   Run in the background
     Can continue even if Activity that started it dies
     Should be used if something needs to be done while the
      user is not interacting with application
           Otherwise, a thread is probably more applicable
      Should create a new thread in the service to do work
       in, since the service runs in the main thread
   Can be bound to an application
     In which case will terminate when all applications bound to
       it unbind
     Allows multiple applications to communicate with it via a
       common interface
   Needs to be declared in manifest file
   Like Activities, has a structured life cycle
SRC
• The project source code

GEN
• Auto generated code
• Example: R.java

Included libraries


Resources
• Drawables
• Layout
• Values like strings
Manifest File
• A must have xml file. Contains essential information about the
  system to the android system
   Auto-generated: YOUR SHOULD’NT EDIT IT!
   Contains IDs of the project resources
   Enforces good software engineering
   Use findViewById and Resources object to get
    access to the resources
       Ex. Button b = (Button)findViewById(R.id.button1)
       Ex. getResources().getString(R.string.hello));
   Eclipse has a great UI creator
       Generates the XML for you
   Composed of View objects
   Can be specified for portrait and landscape
    mode
       Use same file name, so can make completely
        different UIs for the orientations without
        modifying any code
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/ap
k/res/android"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   android:orientation="vertical" >

  <TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello"
    android:id="@+id/tv_hello"/>
  <TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Large Text“
android:textAppearance="?android:attr/textApp   res/values/string.xml
earanceLarge"/>


</LinearLayout>
1. Lunching a new activity without expecting without expecting a result




2. Lunching a new activity and expecting a result when it finished.




CalledActivity.class
   On Eclipse IDE. Go To File >
    New > Project > Android
    Project
   See image at the side for the
    prompt that appear. Click
    next button.
   Select android version.
    Tip: select the latest OS
    version available. You can
    add minimum and target SDK
    on your manifest file to
    support earlier android
    versions.
   Provide package name of
    your project. Valid package
    name consist of two names
    separated by a period.
   Provide package name of
    your project. Valid package
    name consist of two names
    separated by a period.
   Optional: Change minimum
    SDK for the lowest android
    version your application will
    support.
   Hit on finish
In main.xml:




   Under res/layout on your    <?xml version="1.0" encoding="utf-8"?>
                                <LinearLayout
                                xmlns:android="http://schemas.android.com/apk/res/android"
    project explorer. Open        android:layout_width="fill_parent"
                                  android:layout_height="fill_parent"
    main.xml. Create a layout     android:orientation="vertical" >
                                    <TextView
    like this:                        android:layout_width="fill_parent"
                                      android:layout_height="wrap_content"
                                      android:text="@string/hello" />
                                    <LinearLayout
                                      android:layout_width="match_parent"
                                      android:layout_height="wrap_content" >
                                        <Button
                                          android:id="@+id/button1"
                                          android:layout_width="wrap_content"
                                          android:layout_height="wrap_content"
                                          android:text="@string/button1" />
                                        <Button
                                          android:id="@+id/button2"
                                          android:layout_width="wrap_content"
                                          android:layout_height="wrap_content"
                                          android:text="Button 2" />
                                        <Button
                                          android:id="@+id/button3"
                                          android:layout_width="wrap_content"
                                          android:layout_height="wrap_content"
                                          android:text="Button 3" />
                                    </LinearLayout>
                                    <EditText
                                      android:id="@+id/editText1"
                                      android:layout_width="match_parent"
                                      android:layout_height="wrap_content"
                                      android:ems="10" >
                                      <requestFocus />
                                    </EditText>
                                </LinearLayout>
    Under res/values on your
     project explorer. Open
     strings.xml.


<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="hello">Hello World, SampleProjectActivity!</string>
    <string name="app_name">SampleProject</string>
    <string name="button1">Button 1 Clicked.</string>

</resources>




NOTE: string with name button1 is being referenced by Button 1 android:text property.
See main.xml in your layout.
    Under SRC on your project       public class SampleProjectActivity extends Activity implements OnClickListener{
                                        /** Called when the activity is first created. */

     explorer. Open
                                        @Override
                                        public void onCreate(Bundle savedInstanceState) {
                                           super.onCreate(savedInstanceState);

     SampleProjectActivity.java.
                                           setContentView(R.layout.main);
                                           Toast.makeText(this, "Hello.", Toast.LENGTH_LONG).show();
                                           //referencing components in our layout as set in setContentView, - main.xml
                                           //findViewById is used hence we components in our layout will be called
     Change code to this:                  //through their ids as set in android:id properties. See main.xml in your layout.
                                           Button btn1 = (Button)findViewById(R.id.button1);
                                           //one way in handling click event
                                           btn1.setOnClickListener(new View.OnClickListener() {
    See comments for better                   @Override
                                               public void onClick(View v) {
                                                 //Toast is a prompt that will notify user of what has happened in the

     understand.                     application
                                                 //but not requiring user an action.
                                                 Toast.makeText(getApplication(), "Button 1
                                     Clicked", Toast.LENGTH_LONG).show();
                                               }
                                           });

import android.app.Activity;                 Button btn2 = (Button)findViewById(R.id.button2);
                                             Button btn3 = (Button)findViewById(R.id.button3);
import android.content.Intent;               //Other way of handling event inside an activity
                                             btn2.setOnClickListener(this);
import android.os.Bundle;                }
                                             btn3.setOnClickListener(this);

import android.view.View;                @Override
                                         public void onClick(View v) {
import                                     // TODO Auto-generated method stub

android.view.View.OnClickListener;           switch(v.getId())
                                             {
                                             case R.id.button2:
import android.widget.Button;                  EditText editText = (EditText)findViewById(R.id.editText1);
                                               editText.setText("Button 2 Clicked!");
import android.widget.EditText;                break;
                                             case R.id.button3:
                                               // Intent with out waiting for result.
import android.widget.Toast;                   // This is creating a new view and passing the new controll to the next view.
                                               Intent intent = new Intent(this, NextActivity.class);
                                               startActivity(intent);
                                               break;

                                             }
                                         }
                                     }
   Create NextActivity.java       import android.app.Activity;
                                   import android.os.Bundle;
   Right click SRC folder > New   import android.widget.Button;
                                   import android.widget.TextView;
    > Class.                       public class NextActivity extends Activity{

   Change code to this:               @Override
                                       public void onCreate(Bundle savedInstanceState)
                                   {
                                         super.onCreate(savedInstanceState);
                                         // you can have a new layout. but for this example
                                         // we will be reusing the main.xml as our layout.
                                         // we will just manipulate the text to inform user that
                                         //a new activity has been created.
                                         setContentView(R.layout.main);
                                         // setTitle - change the title of the next view
                                         setTitle("Next Activity");
                                        //setting page title
                                        TextView pageTitle =
                                   (TextView)findViewById(R.id.pagetitle);
                                        pageTitle.setText("Hello, You are now in the Next
                                   Activity Class.");
                                        Button btn1 = (Button)findViewById(R.id.button1);
                                        btn1.setText("Option 1");
                                        Button btn2 = (Button)findViewById(R.id.button2);
                                        btn2.setText("Option 2");
                                        Button btn3 = (Button)findViewById(R.id.button3);
                                        btn3.setText("Option 3");
                                     }
                                   }
   Open Manifest.xml in your        <?xml version="1.0" encoding="utf-8"?>
    project explorer.                <manifest
                                     xmlns:android="http://schemas.android.com/apk/re
                                     s/android"
   Register NextActivity class to      package="com.sample"
                                        android:versionCode="1"
    your project.                       android:versionName="1.0" >

   Your new manifest file must      <uses-sdk android:minSdkVersion="8"
                                     android:targetSdkVersion="15"/>
    look like the code at the          <application
                                         android:icon="@drawable/ic_launcher"
    side.                                android:label="@string/app_name" >
                                         <activity
   Save all the changes                    android:name=".SampleBradActivity"
                                            android:label="@string/app_name" >
                                            <intent-filter>
                                               <action
                                     android:name="android.intent.action.MAIN" />
                                                <category
                                     android:name="android.intent.category.LAUNCHE
                                     R" />
                                             </intent-filter>
                                           </activity>
                                           <activity
                                             android:name=".NextActivity"
                                             android:label="@string/app_name" />
                                       </application>
                                     </manifest>
   Right click your project name in your project explorer > RUN AS
    > ANDROID APPLICATION.
   Emulator will boot up. Wait until home screen is shown.
   Your application will be displayed on the screen.
   You can now enjoy the application.




             Congratulations!!!
   Installation: http://developershaven.net
   Google API: http://mfarhan133.wordpress.com/2010/10/01/generate-google-maps-api-key-for-android/
   Android Developer’s Website : http://developer.android.com/index.html
   Numerous Forums & other developer sites, including:
      http://www.javacodegeeks.com/2011/02/android-google-maps-tutorial.html
      http://efreedom.com/Question/1-6070968/Google-Maps-Api-Directions
      http://stackoverflow.com
      http://www.anddev.org/google_driving_directions_-_mapview_overlayed-t826.html
Joemarie Comeros Amparo
               about.me/joemarieamparo
      Skype/Ymail/Gmail : joemarieamparo
     Facebook: joemarieamparo@yahoo.com

Weitere ähnliche Inhalte

Was ist angesagt?

Android development tutorial
Android development tutorialAndroid development tutorial
Android development tutorialnazzf
 
Android Development Slides
Android Development SlidesAndroid Development Slides
Android Development SlidesVictor Miclovich
 
Android app development basics
Android app development basicsAndroid app development basics
Android app development basicsAnton Narusberg
 
Android development basics
Android development basicsAndroid development basics
Android development basicsPramesh Gautam
 
Android Development Training
Android Development TrainingAndroid Development Training
Android Development Trainingchandutata
 
Android development orientation for starters v2
Android development orientation for starters v2Android development orientation for starters v2
Android development orientation for starters v2Joemarie Amparo
 
Android Application Development Using Java
Android Application Development Using JavaAndroid Application Development Using Java
Android Application Development Using Javaamaankhan
 
Android basic principles
Android basic principlesAndroid basic principles
Android basic principlesHenk Laracker
 
Android App Development Intro at ESC SV 2012
Android App Development Intro at ESC SV 2012Android App Development Intro at ESC SV 2012
Android App Development Intro at ESC SV 2012Opersys inc.
 
Day1 before getting_started
Day1 before getting_startedDay1 before getting_started
Day1 before getting_startedAhsanul Karim
 
Android application development
Android application developmentAndroid application development
Android application developmentMadhuprakashR1
 
Android application development the basics (2)
Android application development the basics (2)Android application development the basics (2)
Android application development the basics (2)Aliyu Olalekan
 
Simple Android Project (SAP)... A Test Application
Simple Android Project (SAP)... A Test ApplicationSimple Android Project (SAP)... A Test Application
Simple Android Project (SAP)... A Test ApplicationAritra Mukherjee
 
Android Application Development
Android Application DevelopmentAndroid Application Development
Android Application DevelopmentRamesh Prasad
 
Android development - the basics, MFF UK, 2014
Android development - the basics, MFF UK, 2014Android development - the basics, MFF UK, 2014
Android development - the basics, MFF UK, 2014Tomáš Kypta
 

Was ist angesagt? (20)

Android Applications Development
Android Applications DevelopmentAndroid Applications Development
Android Applications Development
 
Android development tutorial
Android development tutorialAndroid development tutorial
Android development tutorial
 
Android Development Slides
Android Development SlidesAndroid Development Slides
Android Development Slides
 
Android app development basics
Android app development basicsAndroid app development basics
Android app development basics
 
Android development basics
Android development basicsAndroid development basics
Android development basics
 
Android Development Training
Android Development TrainingAndroid Development Training
Android Development Training
 
Android development orientation for starters v2
Android development orientation for starters v2Android development orientation for starters v2
Android development orientation for starters v2
 
Android Application Development Using Java
Android Application Development Using JavaAndroid Application Development Using Java
Android Application Development Using Java
 
Android basic principles
Android basic principlesAndroid basic principles
Android basic principles
 
Android App Development Intro at ESC SV 2012
Android App Development Intro at ESC SV 2012Android App Development Intro at ESC SV 2012
Android App Development Intro at ESC SV 2012
 
Day1 before getting_started
Day1 before getting_startedDay1 before getting_started
Day1 before getting_started
 
Android application development
Android application developmentAndroid application development
Android application development
 
Android Development Basics
Android Development BasicsAndroid Development Basics
Android Development Basics
 
Android programming basics
Android programming basicsAndroid programming basics
Android programming basics
 
Android Development Tutorial V3
Android Development Tutorial   V3Android Development Tutorial   V3
Android Development Tutorial V3
 
Android application development the basics (2)
Android application development the basics (2)Android application development the basics (2)
Android application development the basics (2)
 
PPT Companion to Android
PPT Companion to AndroidPPT Companion to Android
PPT Companion to Android
 
Simple Android Project (SAP)... A Test Application
Simple Android Project (SAP)... A Test ApplicationSimple Android Project (SAP)... A Test Application
Simple Android Project (SAP)... A Test Application
 
Android Application Development
Android Application DevelopmentAndroid Application Development
Android Application Development
 
Android development - the basics, MFF UK, 2014
Android development - the basics, MFF UK, 2014Android development - the basics, MFF UK, 2014
Android development - the basics, MFF UK, 2014
 

Andere mochten auch

Android Development: The Basics
Android Development: The BasicsAndroid Development: The Basics
Android Development: The BasicsMike Desjardins
 
My Project Report Documentation with Abstract & Snapshots
My Project Report Documentation with Abstract & SnapshotsMy Project Report Documentation with Abstract & Snapshots
My Project Report Documentation with Abstract & SnapshotsUsman Sait
 
Android Development Training for Beginners - Activity
Android Development Training for Beginners - ActivityAndroid Development Training for Beginners - Activity
Android Development Training for Beginners - ActivityJoemarie Amparo
 
Latest Android topics for Computer Engineering Students
Latest Android topics for Computer Engineering StudentsLatest Android topics for Computer Engineering Students
Latest Android topics for Computer Engineering StudentsAdz91 Digital Ads Pvt Ltd
 
Presentation on Android operating system
Presentation on Android operating systemPresentation on Android operating system
Presentation on Android operating systemSalma Begum
 
Android Protips: Advanced Topics for Expert Android App Developers
Android Protips: Advanced Topics for Expert Android App DevelopersAndroid Protips: Advanced Topics for Expert Android App Developers
Android Protips: Advanced Topics for Expert Android App DevelopersReto Meier
 
Presentation On Android OS
Presentation On Android OSPresentation On Android OS
Presentation On Android OSAkshay Kakkar
 
A project report on chat application
A project report on chat applicationA project report on chat application
A project report on chat applicationKumar Gaurav
 
My presentation on Android in my college
My presentation on Android in my collegeMy presentation on Android in my college
My presentation on Android in my collegeSneha Lata
 
Android seminar-presentation
Android seminar-presentationAndroid seminar-presentation
Android seminar-presentationconnectshilpa
 
Android College Application Project Report
Android College Application Project ReportAndroid College Application Project Report
Android College Application Project Reportstalin george
 
Home automation using android mobiles
Home automation using android mobilesHome automation using android mobiles
Home automation using android mobilesDurairaja
 
Мобайл контентыг хөгжүүлэх чиглэлээр МТҮП-аас хийж байгаа ажлуудын танилцуулга
Мобайл контентыг хөгжүүлэх чиглэлээр МТҮП-аас хийж байгаа ажлуудын танилцуулгаМобайл контентыг хөгжүүлэх чиглэлээр МТҮП-аас хийж байгаа ажлуудын танилцуулга
Мобайл контентыг хөгжүүлэх чиглэлээр МТҮП-аас хийж байгаа ажлуудын танилцуулгаГанцоож Цэрэннадмид
 
How to become an android developer
How to become an android developerHow to become an android developer
How to become an android developerum_adeveloper
 
Confidential Information & Trade Secrets law
Confidential Information & Trade Secrets lawConfidential Information & Trade Secrets law
Confidential Information & Trade Secrets lawNiall Tierney
 

Andere mochten auch (18)

Android Development: The Basics
Android Development: The BasicsAndroid Development: The Basics
Android Development: The Basics
 
Android ppt
Android ppt Android ppt
Android ppt
 
My Project Report Documentation with Abstract & Snapshots
My Project Report Documentation with Abstract & SnapshotsMy Project Report Documentation with Abstract & Snapshots
My Project Report Documentation with Abstract & Snapshots
 
Android Development Training for Beginners - Activity
Android Development Training for Beginners - ActivityAndroid Development Training for Beginners - Activity
Android Development Training for Beginners - Activity
 
Latest Android topics for Computer Engineering Students
Latest Android topics for Computer Engineering StudentsLatest Android topics for Computer Engineering Students
Latest Android topics for Computer Engineering Students
 
Presentation on Android operating system
Presentation on Android operating systemPresentation on Android operating system
Presentation on Android operating system
 
Android Project Titles 2014 15
Android Project Titles 2014 15Android Project Titles 2014 15
Android Project Titles 2014 15
 
Android Protips: Advanced Topics for Expert Android App Developers
Android Protips: Advanced Topics for Expert Android App DevelopersAndroid Protips: Advanced Topics for Expert Android App Developers
Android Protips: Advanced Topics for Expert Android App Developers
 
Presentation On Android OS
Presentation On Android OSPresentation On Android OS
Presentation On Android OS
 
A project report on chat application
A project report on chat applicationA project report on chat application
A project report on chat application
 
Android workShop
Android workShopAndroid workShop
Android workShop
 
My presentation on Android in my college
My presentation on Android in my collegeMy presentation on Android in my college
My presentation on Android in my college
 
Android seminar-presentation
Android seminar-presentationAndroid seminar-presentation
Android seminar-presentation
 
Android College Application Project Report
Android College Application Project ReportAndroid College Application Project Report
Android College Application Project Report
 
Home automation using android mobiles
Home automation using android mobilesHome automation using android mobiles
Home automation using android mobiles
 
Мобайл контентыг хөгжүүлэх чиглэлээр МТҮП-аас хийж байгаа ажлуудын танилцуулга
Мобайл контентыг хөгжүүлэх чиглэлээр МТҮП-аас хийж байгаа ажлуудын танилцуулгаМобайл контентыг хөгжүүлэх чиглэлээр МТҮП-аас хийж байгаа ажлуудын танилцуулга
Мобайл контентыг хөгжүүлэх чиглэлээр МТҮП-аас хийж байгаа ажлуудын танилцуулга
 
How to become an android developer
How to become an android developerHow to become an android developer
How to become an android developer
 
Confidential Information & Trade Secrets law
Confidential Information & Trade Secrets lawConfidential Information & Trade Secrets law
Confidential Information & Trade Secrets law
 

Ähnlich wie Android Development for Beginners with Sample Project - Day 1

Android Development project
Android Development projectAndroid Development project
Android Development projectMinhaj Kazi
 
Android Tutorials : Basic widgets
Android Tutorials : Basic widgetsAndroid Tutorials : Basic widgets
Android Tutorials : Basic widgetsPrajyot Mainkar
 
Android Workshop
Android WorkshopAndroid Workshop
Android WorkshopJunda Ong
 
android level 3
android level 3android level 3
android level 3DevMix
 
Synapseindia android apps introduction hello world
Synapseindia android apps introduction hello worldSynapseindia android apps introduction hello world
Synapseindia android apps introduction hello worldTarunsingh198
 
Lec005 android start_program
Lec005 android start_programLec005 android start_program
Lec005 android start_programEyad Almasri
 
Basics and different xml files used in android
Basics and different xml files used in androidBasics and different xml files used in android
Basics and different xml files used in androidMahmudul Hasan
 
01 09 - graphical user interface - basic widgets
01  09 - graphical user interface - basic widgets01  09 - graphical user interface - basic widgets
01 09 - graphical user interface - basic widgetsSiva Kumar reddy Vasipally
 
Android Bootcamp Tanzania:understanding ui in_android
Android Bootcamp Tanzania:understanding ui in_androidAndroid Bootcamp Tanzania:understanding ui in_android
Android Bootcamp Tanzania:understanding ui in_androidDenis Minja
 
Beginning Native Android Apps
Beginning Native Android AppsBeginning Native Android Apps
Beginning Native Android AppsGil Irizarry
 
Training Session 2 - Day 2
Training Session 2 - Day 2Training Session 2 - Day 2
Training Session 2 - Day 2Vivek Bhusal
 
Introduction to Android Programming
Introduction to Android ProgrammingIntroduction to Android Programming
Introduction to Android ProgrammingRaveendra R
 

Ähnlich wie Android Development for Beginners with Sample Project - Day 1 (20)

Android Development project
Android Development projectAndroid Development project
Android Development project
 
Android Tutorials : Basic widgets
Android Tutorials : Basic widgetsAndroid Tutorials : Basic widgets
Android Tutorials : Basic widgets
 
Android Workshop
Android WorkshopAndroid Workshop
Android Workshop
 
android level 3
android level 3android level 3
android level 3
 
Android
AndroidAndroid
Android
 
Synapseindia android apps introduction hello world
Synapseindia android apps introduction hello worldSynapseindia android apps introduction hello world
Synapseindia android apps introduction hello world
 
Android Application Fundamentals.
Android Application Fundamentals.Android Application Fundamentals.
Android Application Fundamentals.
 
Ap quiz app
Ap quiz appAp quiz app
Ap quiz app
 
Lec005 android start_program
Lec005 android start_programLec005 android start_program
Lec005 android start_program
 
Basics and different xml files used in android
Basics and different xml files used in androidBasics and different xml files used in android
Basics and different xml files used in android
 
01 09 - graphical user interface - basic widgets
01  09 - graphical user interface - basic widgets01  09 - graphical user interface - basic widgets
01 09 - graphical user interface - basic widgets
 
Android
AndroidAndroid
Android
 
Android Bootcamp Tanzania:understanding ui in_android
Android Bootcamp Tanzania:understanding ui in_androidAndroid Bootcamp Tanzania:understanding ui in_android
Android Bootcamp Tanzania:understanding ui in_android
 
Android Button
Android ButtonAndroid Button
Android Button
 
Beginning Native Android Apps
Beginning Native Android AppsBeginning Native Android Apps
Beginning Native Android Apps
 
Training Session 2 - Day 2
Training Session 2 - Day 2Training Session 2 - Day 2
Training Session 2 - Day 2
 
Introduction to Android Programming
Introduction to Android ProgrammingIntroduction to Android Programming
Introduction to Android Programming
 
Android gui framework
Android gui frameworkAndroid gui framework
Android gui framework
 
Layout
LayoutLayout
Layout
 
Mini curso Android
Mini curso AndroidMini curso Android
Mini curso Android
 

Android Development for Beginners with Sample Project - Day 1

  • 1. Android Development Training for Beginners FIRST DAY MODULE By: Joemarie Comeros Amparo
  • 2. Outline:  Overview on Android  Installing ADT on Eclipse  Explore Project Components  Sample Android Project  Running Android Project
  • 3. Android is an open mobile phone platform that was developed by Google and later by Open Handset Alliance. Google defines Android as a "software stack" for mobile phones. Software stack is made up of operating system(the platform on which everything runs), the middleware (the programming that allows applications to talk to a network and to one another) and the applications (the actual programs that phone will run)
  • 4.
  • 5. July 2005 - Google Inc. bought from Danger Inc. Open Handset Alliance was formed headed by Google which is composed of companies like Intel, T- Mobile, Spring Nextel and more. In 2008, Android became available as an open source and ASOP(Android Open Source Project) is responsible for maintaining and development of android. February 2009, the first android version was released, Android 1.1. for Mobile G1.
  • 6. Android 1.1  Android 1.5 Cupcake  Android 1.6 Donut  Android 2.0/2.1 Eclair  Android 2.2.x Froyo  Android 2.3.x Gingerbread  Android 3. x Honeycomb  Android 4.0.x Ice Cream Sandwich  Android 4.1 Jelly Bean
  • 7. Note: When developing an application, consider the market share of the android version. The higher the market share, the higher number your target market is.
  • 8. Note: Based on my development experience, ADT can run on at least Dual Core with at least 2GB RAM.
  • 9. Please refer to: www.developershaven.net
  • 10. Activity • Present a visual user interface for one focused endeavor the user can undertake • Example: a list of menu items users can choose from Services • Run in the background for an indefinite period of time • Example: calculate and provide the result to activities that need it Broadcast Receivers • Receive and react to broadcast announcements • Example: announcements that the time zone has changed Content Providers • Store and retrieve data and make it accessible to all applications • Example: Android ships with a number of content providers for common Intents • Hold the content of a message • Example: convey a request for an activity to present an image to the user or let the user edit some text
  • 11.
  • 12. public class CCSActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); } }
  • 13. Run in the background  Can continue even if Activity that started it dies  Should be used if something needs to be done while the user is not interacting with application  Otherwise, a thread is probably more applicable  Should create a new thread in the service to do work in, since the service runs in the main thread  Can be bound to an application  In which case will terminate when all applications bound to it unbind  Allows multiple applications to communicate with it via a common interface  Needs to be declared in manifest file  Like Activities, has a structured life cycle
  • 14.
  • 15. SRC • The project source code GEN • Auto generated code • Example: R.java Included libraries Resources • Drawables • Layout • Values like strings Manifest File • A must have xml file. Contains essential information about the system to the android system
  • 16.
  • 17. Auto-generated: YOUR SHOULD’NT EDIT IT!  Contains IDs of the project resources  Enforces good software engineering  Use findViewById and Resources object to get access to the resources  Ex. Button b = (Button)findViewById(R.id.button1)  Ex. getResources().getString(R.string.hello));
  • 18.
  • 19.
  • 20. Eclipse has a great UI creator  Generates the XML for you  Composed of View objects  Can be specified for portrait and landscape mode  Use same file name, so can make completely different UIs for the orientations without modifying any code
  • 21.
  • 22.
  • 23. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/ap k/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" android:id="@+id/tv_hello"/> <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Large Text“ android:textAppearance="?android:attr/textApp res/values/string.xml earanceLarge"/> </LinearLayout>
  • 24.
  • 25. 1. Lunching a new activity without expecting without expecting a result 2. Lunching a new activity and expecting a result when it finished. CalledActivity.class
  • 26. On Eclipse IDE. Go To File > New > Project > Android Project  See image at the side for the prompt that appear. Click next button.
  • 27. Select android version. Tip: select the latest OS version available. You can add minimum and target SDK on your manifest file to support earlier android versions.
  • 28. Provide package name of your project. Valid package name consist of two names separated by a period.
  • 29. Provide package name of your project. Valid package name consist of two names separated by a period.  Optional: Change minimum SDK for the lowest android version your application will support.  Hit on finish
  • 30. In main.xml:  Under res/layout on your <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" project explorer. Open android:layout_width="fill_parent" android:layout_height="fill_parent" main.xml. Create a layout android:orientation="vertical" > <TextView like this: android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" > <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/button1" /> <Button android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button 2" /> <Button android:id="@+id/button3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button 3" /> </LinearLayout> <EditText android:id="@+id/editText1" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10" > <requestFocus /> </EditText> </LinearLayout>
  • 31. Under res/values on your project explorer. Open strings.xml. <?xml version="1.0" encoding="utf-8"?> <resources> <string name="hello">Hello World, SampleProjectActivity!</string> <string name="app_name">SampleProject</string> <string name="button1">Button 1 Clicked.</string> </resources> NOTE: string with name button1 is being referenced by Button 1 android:text property. See main.xml in your layout.
  • 32. Under SRC on your project public class SampleProjectActivity extends Activity implements OnClickListener{ /** Called when the activity is first created. */ explorer. Open @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); SampleProjectActivity.java. setContentView(R.layout.main); Toast.makeText(this, "Hello.", Toast.LENGTH_LONG).show(); //referencing components in our layout as set in setContentView, - main.xml //findViewById is used hence we components in our layout will be called Change code to this: //through their ids as set in android:id properties. See main.xml in your layout. Button btn1 = (Button)findViewById(R.id.button1); //one way in handling click event btn1.setOnClickListener(new View.OnClickListener() {  See comments for better @Override public void onClick(View v) { //Toast is a prompt that will notify user of what has happened in the understand. application //but not requiring user an action. Toast.makeText(getApplication(), "Button 1 Clicked", Toast.LENGTH_LONG).show(); } }); import android.app.Activity; Button btn2 = (Button)findViewById(R.id.button2); Button btn3 = (Button)findViewById(R.id.button3); import android.content.Intent; //Other way of handling event inside an activity btn2.setOnClickListener(this); import android.os.Bundle; } btn3.setOnClickListener(this); import android.view.View; @Override public void onClick(View v) { import // TODO Auto-generated method stub android.view.View.OnClickListener; switch(v.getId()) { case R.id.button2: import android.widget.Button; EditText editText = (EditText)findViewById(R.id.editText1); editText.setText("Button 2 Clicked!"); import android.widget.EditText; break; case R.id.button3: // Intent with out waiting for result. import android.widget.Toast; // This is creating a new view and passing the new controll to the next view. Intent intent = new Intent(this, NextActivity.class); startActivity(intent); break; } } }
  • 33. Create NextActivity.java import android.app.Activity; import android.os.Bundle;  Right click SRC folder > New import android.widget.Button; import android.widget.TextView; > Class. public class NextActivity extends Activity{  Change code to this: @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // you can have a new layout. but for this example // we will be reusing the main.xml as our layout. // we will just manipulate the text to inform user that //a new activity has been created. setContentView(R.layout.main); // setTitle - change the title of the next view setTitle("Next Activity"); //setting page title TextView pageTitle = (TextView)findViewById(R.id.pagetitle); pageTitle.setText("Hello, You are now in the Next Activity Class."); Button btn1 = (Button)findViewById(R.id.button1); btn1.setText("Option 1"); Button btn2 = (Button)findViewById(R.id.button2); btn2.setText("Option 2"); Button btn3 = (Button)findViewById(R.id.button3); btn3.setText("Option 3"); } }
  • 34. Open Manifest.xml in your <?xml version="1.0" encoding="utf-8"?> project explorer. <manifest xmlns:android="http://schemas.android.com/apk/re s/android"  Register NextActivity class to package="com.sample" android:versionCode="1" your project. android:versionName="1.0" >  Your new manifest file must <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="15"/> look like the code at the <application android:icon="@drawable/ic_launcher" side. android:label="@string/app_name" > <activity  Save all the changes android:name=".SampleBradActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHE R" /> </intent-filter> </activity> <activity android:name=".NextActivity" android:label="@string/app_name" /> </application> </manifest>
  • 35. Right click your project name in your project explorer > RUN AS > ANDROID APPLICATION.  Emulator will boot up. Wait until home screen is shown.  Your application will be displayed on the screen.  You can now enjoy the application. Congratulations!!!
  • 36. Installation: http://developershaven.net  Google API: http://mfarhan133.wordpress.com/2010/10/01/generate-google-maps-api-key-for-android/  Android Developer’s Website : http://developer.android.com/index.html  Numerous Forums & other developer sites, including:  http://www.javacodegeeks.com/2011/02/android-google-maps-tutorial.html  http://efreedom.com/Question/1-6070968/Google-Maps-Api-Directions  http://stackoverflow.com  http://www.anddev.org/google_driving_directions_-_mapview_overlayed-t826.html
  • 37. Joemarie Comeros Amparo about.me/joemarieamparo Skype/Ymail/Gmail : joemarieamparo Facebook: joemarieamparo@yahoo.com