Operaciones aritmeticas utilizando_radio_button(1)_1

10
Giezi de Jesus Vera Pérez 4DM PROGRAMACION

Transcript of Operaciones aritmeticas utilizando_radio_button(1)_1

Page 1: Operaciones aritmeticas utilizando_radio_button(1)_1

Giezi de Jesus Vera Pérez4DM PROGRAMACION

Page 2: Operaciones aritmeticas utilizando_radio_button(1)_1

a

Abrimos nuestro nuevo proyecto de aplicación android

Page 3: Operaciones aritmeticas utilizando_radio_button(1)_1

Le damos un nombre

Page 4: Operaciones aritmeticas utilizando_radio_button(1)_1

Eliminamos el hello world

Page 5: Operaciones aritmeticas utilizando_radio_button(1)_1

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

Page 6: Operaciones aritmeticas utilizando_radio_button(1)_1

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_button(1)_1

                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_button(1)_1
Page 9: Operaciones aritmeticas utilizando_radio_button(1)_1

Lo corremos..

Page 10: Operaciones aritmeticas utilizando_radio_button(1)_1

LISTO