Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Android for Beginners

Android for Beginners

This presentation introduces the concept of Android Development to people with no programming experience at all.

Moyinoluwa Adeyemi

September 30, 2016
Tweet

More Decks by Moyinoluwa Adeyemi

Other Decks in Technology

Transcript

  1. Android for Beginners Go from to real fast! TECH MEETS

    HER ENTERPRISE Moyinoluwa Adeyemi September 30, 2016
  2. TECH MEETS HER ENTERPRISE Android Versions 1.5 - Cupcake 1.6

    - Donut 2.1 - Eclair 2.2 - Froyo 2.3 - GingerBread
  3. Android Versions 4.0 - Ice-cream Sandwich 4.1 - Jelly Bean

    4.4 - Kitkat 3.0 - Honeycomb TECH MEETS HER ENTERPRISE
  4. Android Versions 6.0 - Marshmallow 7.0 - Nougat 5.0 -

    Lollipop TECH MEETS HER ENTERPRISE
  5. Interacting with the views through Java code package com.moyinoluwa.techher; import

    android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } } TECH MEETS HER ENTERPRISE