Practica 7 edhiel

10

Click here to load reader

Transcript of Practica 7 edhiel

Page 1: Practica 7 edhiel

PRACTICA 7 .-OPERACIONES ARITMETICAS UTILIZANDO CHECKBOX

EDHIEL MEDINA TELLO

4°Am PG

Page 2: Practica 7 edhiel

A

Abrimos nuestro nuevo proyecto de aplicación android

Page 3: Practica 7 edhiel

Le damos un nombre

Page 4: Practica 7 edhiel

Eliminamos el hello world

Page 5: Practica 7 edhiel

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

Page 6: Practica 7 edhiel

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: Practica 7 edhiel

• 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: Practica 7 edhiel
Page 9: Practica 7 edhiel

Lo corremos..

Page 10: Practica 7 edhiel

LISTO