SlideShare una empresa de Scribd logo
1 de 20
Android Mobile Boot camp
KINU | TANZANIA

10/23/2013

KINU | Android Mobile BootCamp
Android Platform Overview

10/23/2013

KINU | Android Mobile BootCamp
Set Android Emulator

Not a Simulator!
10/23/2013

KINU | Android Mobile BootCamp
Create new Android project

10/23/2013

KINU | Android Mobile BootCamp
Android project layout

10/23/2013

KINU | Android Mobile BootCamp
Android Key Concepts
and building blocks

10/23/2013

KINU | Android Mobile BootCamp
Activity
Android Key Concepts

10/23/2013

KINU | Android Mobile BootCamp
Android Widgets
Android Key Concepts
 Button
 TextView
 EditText

 ImageView
 ImageButton

 And many more…..
INPUT
10/23/2013

KINU | Android Mobile BootCamp

OUTPUT
Android Intents
Android Key Concepts

provides runtime binding

SCREEN 2
[ACTIVITY]

SCREEN 1
[ACTIVITY]

Intent about=new Intent(getApplicationContext(),About.class);
startActivity(about);
10/23/2013

KINU | Android Mobile BootCamp
Android Intents
Android Key Concepts

Intent intent = new Intent(this, DisplayMessageActivity.class);

Parameters
 Context

 The Class of the app component to which the system should deliver the Intent (in
this case, the activity that should be started)

10/23/2013

KINU | Android Mobile BootCamp
Android Intents
Android Key Concepts
 Carry Collection of Data to another Activity
 extras
putExtra
 public void sendMessage(View view) {
Intent intent = new Intent(this, DisplayMessageActivity.class);
EditText editText = (EditText) findViewById(R.id.edit_message);
String message = editText.getText().toString();
intent.putExtra(EXTRA_MESSAGE, message);
startActivity(intent);
}
Receive Intent

 Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

10/23/2013

KINU | Android Mobile BootCamp
XML codes
Android Key Concepts

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#008080">

10/23/2013

KINU | Android Mobile BootCamp
Android Manifest File
Android Key Concepts
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.randomname.costech"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/appicon" android:label="@string/app_name">
<activity android:name=".AppStartmenu"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

Think of plane manifest!
10/23/2013

KINU | Android Mobile BootCamp
Android Manifest File
Android Key Concepts

<activity android:name=".Startmenu"></activity>
<activity android:name=".About"></activity>
<activity android:name=".Help"></activity>
</application>
<uses-sdk android:minSdkVersion="8" />
</manifest>

Think of plane manifest!
10/23/2013

KINU | Android Mobile BootCamp
Android layouts
Android Key Concepts

 Linear Layout
 Absolute layout
 Frame layout

10/23/2013

KINU | Android Mobile BootCamp
Android Menus [options menu]
Android Key Concepts

10/23/2013

KINU | Android Mobile BootCamp
Android Key Concepts

Android Icons

10/23/2013

KINU | Android Mobile BootCamp
Android Key Concepts

Android App Deployment
APK FILE

10/23/2013

KINU | Android Mobile BootCamp
1

10/23/2013

Reference Android App

KINU | Android Mobile BootCamp
Get your hands Dirty

10/23/2013

KINU | Android Mobile BootCamp

Más contenido relacionado

Destacado

Costech mobile bootcamp 2
Costech mobile bootcamp 2Costech mobile bootcamp 2
Costech mobile bootcamp 2Denis Minja
 
Android Bootcamp Tanzania:Monetization
Android Bootcamp Tanzania:MonetizationAndroid Bootcamp Tanzania:Monetization
Android Bootcamp Tanzania:MonetizationDenis Minja
 
Android Bootcamp Tanzania:Costech mobile bootcamp monetazation
Android Bootcamp Tanzania:Costech mobile bootcamp monetazationAndroid Bootcamp Tanzania:Costech mobile bootcamp monetazation
Android Bootcamp Tanzania:Costech mobile bootcamp monetazationDenis Minja
 
Android Bootcamp Tanzania:Publishing android application
Android Bootcamp Tanzania:Publishing android applicationAndroid Bootcamp Tanzania:Publishing android application
Android Bootcamp Tanzania:Publishing android applicationDenis Minja
 
III la gouvernance des politiques de solidarité
III la gouvernance des politiques de solidaritéIII la gouvernance des politiques de solidarité
III la gouvernance des politiques de solidaritéSerge G Laurens
 
Effective use of powerpoint
Effective use of powerpointEffective use of powerpoint
Effective use of powerpointCedric Aurelio
 
Introduction to android basics
Introduction to android basicsIntroduction to android basics
Introduction to android basicsHasam Panezai
 
Android basic principles
Android basic principlesAndroid basic principles
Android basic principlesHenk Laracker
 
Android Wear Presentation
Android Wear PresentationAndroid Wear Presentation
Android Wear PresentationZi Yong Chua
 

Destacado (10)

Costech mobile bootcamp 2
Costech mobile bootcamp 2Costech mobile bootcamp 2
Costech mobile bootcamp 2
 
Android Bootcamp Tanzania:Monetization
Android Bootcamp Tanzania:MonetizationAndroid Bootcamp Tanzania:Monetization
Android Bootcamp Tanzania:Monetization
 
Android Bootcamp Tanzania:Costech mobile bootcamp monetazation
Android Bootcamp Tanzania:Costech mobile bootcamp monetazationAndroid Bootcamp Tanzania:Costech mobile bootcamp monetazation
Android Bootcamp Tanzania:Costech mobile bootcamp monetazation
 
Android Bootcamp Tanzania:Publishing android application
Android Bootcamp Tanzania:Publishing android applicationAndroid Bootcamp Tanzania:Publishing android application
Android Bootcamp Tanzania:Publishing android application
 
III la gouvernance des politiques de solidarité
III la gouvernance des politiques de solidaritéIII la gouvernance des politiques de solidarité
III la gouvernance des politiques de solidarité
 
Effective use of powerpoint
Effective use of powerpointEffective use of powerpoint
Effective use of powerpoint
 
Android
AndroidAndroid
Android
 
Introduction to android basics
Introduction to android basicsIntroduction to android basics
Introduction to android basics
 
Android basic principles
Android basic principlesAndroid basic principles
Android basic principles
 
Android Wear Presentation
Android Wear PresentationAndroid Wear Presentation
Android Wear Presentation
 

Similar a Android Bootcamp Tanzania:Overview of android platform

Industrial training in chandigarh
Industrial training in chandigarhIndustrial training in chandigarh
Industrial training in chandigarhCBitss Technologies
 
Android Study Jams- Day 2(Hands on Experience)
Android Study Jams- Day 2(Hands on Experience)Android Study Jams- Day 2(Hands on Experience)
Android Study Jams- Day 2(Hands on Experience)GoogleDSC
 
Chrome Dev Summit Highlights (NYC GDG Dec 2013)
Chrome Dev Summit Highlights (NYC GDG Dec 2013)Chrome Dev Summit Highlights (NYC GDG Dec 2013)
Chrome Dev Summit Highlights (NYC GDG Dec 2013)Nitya Narasimhan
 
CHAPTER 3 mad.pdf
CHAPTER 3 mad.pdfCHAPTER 3 mad.pdf
CHAPTER 3 mad.pdfhabtishman1
 
Smells likeandroid joanacosta_sept2010
Smells likeandroid joanacosta_sept2010Smells likeandroid joanacosta_sept2010
Smells likeandroid joanacosta_sept2010Joana Costa
 
Self Driving Car Seminar presentation
Self Driving Car Seminar presentationSelf Driving Car Seminar presentation
Self Driving Car Seminar presentationBittu Kumar
 
User experirncearchitecture product
User experirncearchitecture productUser experirncearchitecture product
User experirncearchitecture productSushmita Dutt
 
User Experience Architecture - Product
User Experience Architecture - ProductUser Experience Architecture - Product
User Experience Architecture - ProductSushmita Dutt
 
User exparch product
User exparch productUser exparch product
User exparch productSushmita Dutt
 
User Experience Architecture - Product
User Experience Architecture - ProductUser Experience Architecture - Product
User Experience Architecture - ProductSushmita Dutt
 
Intents: Talking to your neighbors
Intents: Talking to your neighborsIntents: Talking to your neighbors
Intents: Talking to your neighborscketti
 
Droidcon: Sean Owen: Driving Downloads via Intents- 29/10/2010
Droidcon: Sean Owen: Driving Downloads via Intents- 29/10/2010Droidcon: Sean Owen: Driving Downloads via Intents- 29/10/2010
Droidcon: Sean Owen: Driving Downloads via Intents- 29/10/2010Skills Matter
 
Quill slides-www2013
Quill slides-www2013Quill slides-www2013
Quill slides-www2013Vivian Motti
 
Quill slides-www2013
Quill slides-www2013Quill slides-www2013
Quill slides-www2013Vivian Motti
 
Mobile testing. Xamarin.UITest approach
Mobile testing. Xamarin.UITest approachMobile testing. Xamarin.UITest approach
Mobile testing. Xamarin.UITest approachVolodymyr Kimak
 
Product - User Experience Architecture
Product - User Experience ArchitectureProduct - User Experience Architecture
Product - User Experience ArchitectureSushmita Dutt
 
Developing For Android Wear - Part 2
Developing For Android Wear - Part 2Developing For Android Wear - Part 2
Developing For Android Wear - Part 2Justin Munger
 

Similar a Android Bootcamp Tanzania:Overview of android platform (20)

Industrial training in chandigarh
Industrial training in chandigarhIndustrial training in chandigarh
Industrial training in chandigarh
 
Android Study Jams- Day 2(Hands on Experience)
Android Study Jams- Day 2(Hands on Experience)Android Study Jams- Day 2(Hands on Experience)
Android Study Jams- Day 2(Hands on Experience)
 
Chrome Dev Summit Highlights (NYC GDG Dec 2013)
Chrome Dev Summit Highlights (NYC GDG Dec 2013)Chrome Dev Summit Highlights (NYC GDG Dec 2013)
Chrome Dev Summit Highlights (NYC GDG Dec 2013)
 
CHAPTER 3 mad.pdf
CHAPTER 3 mad.pdfCHAPTER 3 mad.pdf
CHAPTER 3 mad.pdf
 
Smells likeandroid joanacosta_sept2010
Smells likeandroid joanacosta_sept2010Smells likeandroid joanacosta_sept2010
Smells likeandroid joanacosta_sept2010
 
Self Driving Car Seminar presentation
Self Driving Car Seminar presentationSelf Driving Car Seminar presentation
Self Driving Car Seminar presentation
 
User experirncearchitecture product
User experirncearchitecture productUser experirncearchitecture product
User experirncearchitecture product
 
Android Made Simple
Android Made SimpleAndroid Made Simple
Android Made Simple
 
User Experience Architecture - Product
User Experience Architecture - ProductUser Experience Architecture - Product
User Experience Architecture - Product
 
User exparch product
User exparch productUser exparch product
User exparch product
 
User Experience Architecture - Product
User Experience Architecture - ProductUser Experience Architecture - Product
User Experience Architecture - Product
 
Android Sunumu
Android SunumuAndroid Sunumu
Android Sunumu
 
Intents: Talking to your neighbors
Intents: Talking to your neighborsIntents: Talking to your neighbors
Intents: Talking to your neighbors
 
Droidcon: Sean Owen: Driving Downloads via Intents- 29/10/2010
Droidcon: Sean Owen: Driving Downloads via Intents- 29/10/2010Droidcon: Sean Owen: Driving Downloads via Intents- 29/10/2010
Droidcon: Sean Owen: Driving Downloads via Intents- 29/10/2010
 
Quill slides-www2013
Quill slides-www2013Quill slides-www2013
Quill slides-www2013
 
Quill slides-www2013
Quill slides-www2013Quill slides-www2013
Quill slides-www2013
 
Mobile testing. Xamarin.UITest approach
Mobile testing. Xamarin.UITest approachMobile testing. Xamarin.UITest approach
Mobile testing. Xamarin.UITest approach
 
Product - User Experience Architecture
Product - User Experience ArchitectureProduct - User Experience Architecture
Product - User Experience Architecture
 
Developing For Android Wear - Part 2
Developing For Android Wear - Part 2Developing For Android Wear - Part 2
Developing For Android Wear - Part 2
 
Samsung salaxy s5 preview.ppt
Samsung salaxy s5 preview.pptSamsung salaxy s5 preview.ppt
Samsung salaxy s5 preview.ppt
 

Último

Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 

Último (20)

Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 

Android Bootcamp Tanzania:Overview of android platform

  • 1. Android Mobile Boot camp KINU | TANZANIA 10/23/2013 KINU | Android Mobile BootCamp
  • 2. Android Platform Overview 10/23/2013 KINU | Android Mobile BootCamp
  • 3. Set Android Emulator Not a Simulator! 10/23/2013 KINU | Android Mobile BootCamp
  • 4. Create new Android project 10/23/2013 KINU | Android Mobile BootCamp
  • 5. Android project layout 10/23/2013 KINU | Android Mobile BootCamp
  • 6. Android Key Concepts and building blocks 10/23/2013 KINU | Android Mobile BootCamp
  • 8. Android Widgets Android Key Concepts  Button  TextView  EditText  ImageView  ImageButton  And many more….. INPUT 10/23/2013 KINU | Android Mobile BootCamp OUTPUT
  • 9. Android Intents Android Key Concepts provides runtime binding SCREEN 2 [ACTIVITY] SCREEN 1 [ACTIVITY] Intent about=new Intent(getApplicationContext(),About.class); startActivity(about); 10/23/2013 KINU | Android Mobile BootCamp
  • 10. Android Intents Android Key Concepts Intent intent = new Intent(this, DisplayMessageActivity.class); Parameters  Context  The Class of the app component to which the system should deliver the Intent (in this case, the activity that should be started) 10/23/2013 KINU | Android Mobile BootCamp
  • 11. Android Intents Android Key Concepts  Carry Collection of Data to another Activity  extras putExtra  public void sendMessage(View view) { Intent intent = new Intent(this, DisplayMessageActivity.class); EditText editText = (EditText) findViewById(R.id.edit_message); String message = editText.getText().toString(); intent.putExtra(EXTRA_MESSAGE, message); startActivity(intent); } Receive Intent  Intent intent = getIntent(); String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE); 10/23/2013 KINU | Android Mobile BootCamp
  • 12. XML codes Android Key Concepts <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#008080"> 10/23/2013 KINU | Android Mobile BootCamp
  • 13. Android Manifest File Android Key Concepts <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.randomname.costech" android:versionCode="1" android:versionName="1.0"> <application android:icon="@drawable/appicon" android:label="@string/app_name"> <activity android:name=".AppStartmenu" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> Think of plane manifest! 10/23/2013 KINU | Android Mobile BootCamp
  • 14. Android Manifest File Android Key Concepts <activity android:name=".Startmenu"></activity> <activity android:name=".About"></activity> <activity android:name=".Help"></activity> </application> <uses-sdk android:minSdkVersion="8" /> </manifest> Think of plane manifest! 10/23/2013 KINU | Android Mobile BootCamp
  • 15. Android layouts Android Key Concepts  Linear Layout  Absolute layout  Frame layout 10/23/2013 KINU | Android Mobile BootCamp
  • 16. Android Menus [options menu] Android Key Concepts 10/23/2013 KINU | Android Mobile BootCamp
  • 17. Android Key Concepts Android Icons 10/23/2013 KINU | Android Mobile BootCamp
  • 18. Android Key Concepts Android App Deployment APK FILE 10/23/2013 KINU | Android Mobile BootCamp
  • 19. 1 10/23/2013 Reference Android App KINU | Android Mobile BootCamp
  • 20. Get your hands Dirty 10/23/2013 KINU | Android Mobile BootCamp