Posts by Bruno Yanase • 1 point
1 post
-
-2
votes1
answer24
viewsQ: How can I take the result of the imc to and put in another Textview??? I tried this way
public void btCalcularIMC(View v){ float altura, peso, imc; altura = Float.parseFloat(edAltura.getText().toString()); peso = Float.parseFloat(edPeso.getText().toString()); …