ݺߣ

ݺߣShare a Scribd company logo
Centro de Estudio Tecnológicos Industrial
& Servicios 109.
Nombre: ADRIANA LIZBETH AVILA ORTIZ.
MARICARMEN AVILA ORTIZ
GRADO & GRUPO: 4° “BM”
PROFESORA: MARGARITA ROMERO ALVARADO.
MATERIA:DESARROLLAR APLICACIONES MOVIL.
AULA:31
CICLO ESCOLAR: FEB-JUN 2015.
Presentación 12
Dar clic en FILE.
Presentación 12
Presentación 12
Presentación 12
Presentación 12
Presentación 12
Presentación 12
Presentación 12
 package com.programa12;
 import android.support.v7.app.ActionBarActivity;
 import android.os.Bundle;
 import android.view.Menu;
 import android.view.MenuItem;
 import android.view.View;
 import android.widget.TextView;
 public class MainActivity extends ActionBarActivity {
 @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;
 }
 @Override
 public boolean
onOptionsItemSelected(MenuItem item) {
 // Handle action bar item clicks here. The action bar will
 // automatically handle clicks on the Home/Up button, so long
 // as you specify a parent activity in AndroidManifest.xml.
 int id = item.getItemId();
 if (id == R.id.action_settings) {
 return true;
 }
 return super.onOptionsItemSelected(item);
 }
 public void calcular (View view){
 TextView r=(TextView) findViewById (R.id.textView2);
 String sol="";
 int num=1;
 do{
 sol+=String.valueOf(num)+"n";
 num++;
 }while (num<11);
 r.setText(String.valueOf(sol));
 }
 }
Presentación 12
Presentación 12
Presentación 12
 ESTE PROGRAMA NO ES NADA DIFICIL SOLO
SIGUE LOS PASOS Y ENTENDERAS RAPIDAMENTE
YA QUE PUES SI SIGUES LOS PASO NOSE TE ARA
TAN DIFICIL ESTE ESPERO Y TE HAYA GUSTADO
ESTE PROGRAMA.

More Related Content

Presentación 12

  • 1. Centro de Estudio Tecnológicos Industrial & Servicios 109. Nombre: ADRIANA LIZBETH AVILA ORTIZ. MARICARMEN AVILA ORTIZ GRADO & GRUPO: 4° “BM” PROFESORA: MARGARITA ROMERO ALVARADO. MATERIA:DESARROLLAR APLICACIONES MOVIL. AULA:31 CICLO ESCOLAR: FEB-JUN 2015.
  • 3. Dar clic en FILE.
  • 11.  package com.programa12;  import android.support.v7.app.ActionBarActivity;  import android.os.Bundle;  import android.view.Menu;  import android.view.MenuItem;  import android.view.View;  import android.widget.TextView;  public class MainActivity extends ActionBarActivity {  @Override  protected void onCreate(Bundle savedInstanceState) {  super.onCreate(savedInstanceState);  setContentView(R.layout.activity_main);  }
  • 12.  @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;  }  @Override  public boolean onOptionsItemSelected(MenuItem item) {
  • 13.  // Handle action bar item clicks here. The action bar will  // automatically handle clicks on the Home/Up button, so long  // as you specify a parent activity in AndroidManifest.xml.  int id = item.getItemId();  if (id == R.id.action_settings) {  return true;  }  return super.onOptionsItemSelected(item);  }  public void calcular (View view){  TextView r=(TextView) findViewById (R.id.textView2);  String sol="";  int num=1;  do{
  • 14.  sol+=String.valueOf(num)+"n";  num++;  }while (num<11);  r.setText(String.valueOf(sol));  }  }
  • 18.  ESTE PROGRAMA NO ES NADA DIFICIL SOLO SIGUE LOS PASOS Y ENTENDERAS RAPIDAMENTE YA QUE PUES SI SIGUES LOS PASO NOSE TE ARA TAN DIFICIL ESTE ESPERO Y TE HAYA GUSTADO ESTE PROGRAMA.