SlideShare a Scribd company logo
CETIS 109
 AYLIN MIROSLAWAGUERREROSERRANO
 YANORIMARLENEPOSADASPEREZ
 ADRIANOLVERAOLMOS
4AM
PROGRAMACION
DESARROLLA APLICACIONES MOVIL
FACILITADORA: MARGARITA ROMERO ALVARADO
CODIFICACION
HOLA MUNDO
Package com.example.proyecto1;
Import android.os.Bundle;
Import android.app.Activity;
Import android.view.Menu;
Public class MainActivity extends Activity {
@Override
Protected void onCreate (Bundle savedInstanceState) {
super.onCreate (savedInstanceState);
SetContentView (R.layout.activity_main);
}
@Override
Public Boolean onCreateOptionsMenu (Menu menu) {
// inflate the menu; this adds items to the action bar
if it is present.
GetMenuInflater ().inflate (R.menu.main, menu);
Return true;
}
}

More Related Content

DOCX
Programa 1
DOCX
CODIGOS
DOCX
Hola mundo12
DOCX
Hola mundo
DOCX
Programa 2
PDF
Windows 10 - одно приложение для всех платформ. UA Mobile 2016.
PPTX
PDF
Thematic storytelling
Programa 1
CODIGOS
Hola mundo12
Hola mundo
Programa 2
Windows 10 - одно приложение для всех платформ. UA Mobile 2016.
Thematic storytelling

Viewers also liked (12)

PDF
Thematic storytelling
DOCX
Reglamento interno
PPTX
Programa eclipse 8
PDF
Java tutorial
PPTX
Programa eclipse 7
PPTX
Programas 4
PPTX
Thematic storytelling
PPTX
Katy salazar
PPTX
Be Safe, Not Sorry
PDF
Digital Photography Slideshow Theme
PPTX
Google fiber
PPTX
Be Safe, Not Sorry
Thematic storytelling
Reglamento interno
Programa eclipse 8
Java tutorial
Programa eclipse 7
Programas 4
Thematic storytelling
Katy salazar
Be Safe, Not Sorry
Digital Photography Slideshow Theme
Google fiber
Be Safe, Not Sorry
Ad

More from Yin Miroslawa (20)

PPTX
Programa eclipse 12
PPTX
Programa eclipse 11
PPTX
Programa eclipse 10
PPTX
Programa eclipse 13
DOCX
PPTX
Programa 3
PPTX
Programas 5
PPTX
Proyecto 6
PDF
Tutorial Eclipse
DOCX
Examen 3.2
PPTX
Manual de netbeans ide 7.2 ejercicio4
PPTX
Manual de netbeans ide 7.2 ejercicio3
PPTX
Manual de netbeans ide 7.2 ejercicio2
PPTX
Manual de netbeans ide 7.2 ejercicio1
DOCX
rasgos de evaluacion
PDF
Competencia para submodulo de java
DOCX
Ejercicios raptor 2
DOCX
Fases en el desarrollo
DOCX
DOCX
Poltica de calidad
Programa eclipse 12
Programa eclipse 11
Programa eclipse 10
Programa eclipse 13
Programa 3
Programas 5
Proyecto 6
Tutorial Eclipse
Examen 3.2
Manual de netbeans ide 7.2 ejercicio4
Manual de netbeans ide 7.2 ejercicio3
Manual de netbeans ide 7.2 ejercicio2
Manual de netbeans ide 7.2 ejercicio1
rasgos de evaluacion
Competencia para submodulo de java
Ejercicios raptor 2
Fases en el desarrollo
Poltica de calidad
Ad

Recently uploaded (20)

PPTX
INTERNET------BASICS-------UPDATED PPT PRESENTATION
PDF
Sims 4 Historia para lo sims 4 para jugar
PPTX
Module 1 - Cyber Law and Ethics 101.pptx
PDF
Unit-1 introduction to cyber security discuss about how to secure a system
PDF
Smart Home Technology for Health Monitoring (www.kiu.ac.ug)
DOCX
Unit-3 cyber security network security of internet system
PPTX
June-4-Sermon-Powerpoint.pptx USE THIS FOR YOUR MOTIVATION
PDF
Introduction to the IoT system, how the IoT system works
PDF
Paper PDF World Game (s) Great Redesign.pdf
PPT
isotopes_sddsadsaadasdasdasdasdsa1213.ppt
PPT
FIRE PREVENTION AND CONTROL PLAN- LUS.FM.MQ.OM.UTM.PLN.00014.ppt
PPTX
SAP Ariba Sourcing PPT for learning material
PPTX
E -tech empowerment technologies PowerPoint
PPT
Design_with_Watersergyerge45hrbgre4top (1).ppt
PPTX
Introduction to cybersecurity and digital nettiquette
PPTX
Job_Card_System_Styled_lorem_ipsum_.pptx
PPTX
Introduction to Information and Communication Technology
PDF
Slides PDF The World Game (s) Eco Economic Epochs.pdf
PPT
Ethics in Information System - Management Information System
PDF
SASE Traffic Flow - ZTNA Connector-1.pdf
INTERNET------BASICS-------UPDATED PPT PRESENTATION
Sims 4 Historia para lo sims 4 para jugar
Module 1 - Cyber Law and Ethics 101.pptx
Unit-1 introduction to cyber security discuss about how to secure a system
Smart Home Technology for Health Monitoring (www.kiu.ac.ug)
Unit-3 cyber security network security of internet system
June-4-Sermon-Powerpoint.pptx USE THIS FOR YOUR MOTIVATION
Introduction to the IoT system, how the IoT system works
Paper PDF World Game (s) Great Redesign.pdf
isotopes_sddsadsaadasdasdasdasdsa1213.ppt
FIRE PREVENTION AND CONTROL PLAN- LUS.FM.MQ.OM.UTM.PLN.00014.ppt
SAP Ariba Sourcing PPT for learning material
E -tech empowerment technologies PowerPoint
Design_with_Watersergyerge45hrbgre4top (1).ppt
Introduction to cybersecurity and digital nettiquette
Job_Card_System_Styled_lorem_ipsum_.pptx
Introduction to Information and Communication Technology
Slides PDF The World Game (s) Eco Economic Epochs.pdf
Ethics in Information System - Management Information System
SASE Traffic Flow - ZTNA Connector-1.pdf

Programa 1bbn

  • 1. CETIS 109  AYLIN MIROSLAWAGUERREROSERRANO  YANORIMARLENEPOSADASPEREZ  ADRIANOLVERAOLMOS 4AM PROGRAMACION DESARROLLA APLICACIONES MOVIL FACILITADORA: MARGARITA ROMERO ALVARADO CODIFICACION HOLA MUNDO
  • 2. Package com.example.proyecto1; Import android.os.Bundle; Import android.app.Activity; Import android.view.Menu; Public class MainActivity extends Activity { @Override Protected void onCreate (Bundle savedInstanceState) { super.onCreate (savedInstanceState); SetContentView (R.layout.activity_main); }
  • 3. @Override Public Boolean onCreateOptionsMenu (Menu menu) { // inflate the menu; this adds items to the action bar if it is present. GetMenuInflater ().inflate (R.menu.main, menu); Return true; } }