Operaciones aritmeticas utilizando_radio_button1

11
OPERACIONES ARITMETICAS UTILIZANDO RADIO BUTTON EDITH YAMILETH GONZALEZ CARO JORGE ENRIQUE SANTIAGO GARCIA

Transcript of Operaciones aritmeticas utilizando_radio_button1

Page 1: Operaciones aritmeticas utilizando_radio_button1

OPERACIONES

ARITMETIC

AS UTILIZANDO

RADIO BUTTON

EDITH YAMILETH GONZALEZ

CARO

JORGE ENRIQ

UE SANT IAGO

GARCIA

Page 2: Operaciones aritmeticas utilizando_radio_button1

A

Abrimos nuestro nuevo proyecto de aplicación android

Page 3: Operaciones aritmeticas utilizando_radio_button1

Le damos un nombre

Page 4: Operaciones aritmeticas utilizando_radio_button1

Eliminamos el hello world

Page 5: Operaciones aritmeticas utilizando_radio_button1

Creamos los text view,los radiobutton, los plain text y el button

Page 6: Operaciones aritmeticas utilizando_radio_button1

AGREGAMOS EL SIGUIENTE CODIGO public void operar(View view) {        EditText et1=(EditText)findViewById(R.id.et1);        EditText et2=(EditText)findViewById(R.id.et2);        TextView tv3=(TextView)findViewById(R.id.tv3);          RadioButton radio0=(RadioButton)findViewById(R.id.radio0);        RadioButton radio1=(RadioButton)findViewById(R.id.radio1);                       int nro1=Integer.parseInt(et1.getText().toString());        int nro2=Integer.parseInt(et2.getText().toString());       

Page 7: Operaciones aritmeticas utilizando_radio_button1

               if (radio0.isChecked()==true) {            int suma=nro1+nro2;            String resu=String.valueOf(suma);            tv3.setText(resu);        } else            if (radio1.isChecked()==true) {                int resta=nro1-nro2;                String resu=String.valueOf(resta);                tv3.setText(resu);                           }      }            

Page 8: Operaciones aritmeticas utilizando_radio_button1
Page 9: Operaciones aritmeticas utilizando_radio_button1

Lo corremos..

Page 10: Operaciones aritmeticas utilizando_radio_button1

LISTO

Page 11: Operaciones aritmeticas utilizando_radio_button1

CONCLUSION MI CONCLUSION ES QUE PUES SE ME HACEN

MUY INTERESANTES,YA QUE NO ES TAN DIFICIL Y ACADA PROGRAMA LE APRENDES

UNA COSA NUEVA ESTOS PROGRAMAS SE ME HACEN MUY INTERESANTES Y NOS SIRVEN MUCHO PARA TODOS NOSOTROS .

-JORGE ENRIQUE SANTIAGO GARCIA.