I would like to know how I can do to calculate with just one button two different sums, as I did in the example in the image.
I have the code this way, but only with 2 numbers. How do I make another calculation at the same time with the same button?
public void calcular (View v){
NumberFormat formatter = new DecimalFormat("#0.00");
EditText resultado1 = (EditText) findViewById(R.id.editText15);
String stringresultado1 = resultado1.getText().toString();
EditText resultado2 = (EditText) findViewById(R.id.editText19);
String stringresultado2 = resultado2.getText().toString();
double valorresultado1, valorresultado2;
if(stringresultado1.trim().isEmpty()){valorresultado1 = 0; }
else{valorresultado1 = Double.parseDouble(stringresultado1);}
if(stringresultado2.trim().isEmpty()){valorresultado2 = 0; }
else{valorresultado2 = Double.parseDouble(stringresultado2);}
if (stringresultado1.trim().isEmpty() &&stringresultado2.trim().isEmpty())
{
Toast.makeText(getApplicationContext(), "Campos em branco",
Toast.LENGTH_LONG).show();
}
else
{
double resu = valorresultado1 + valorresultado2;
TextView resultado = (TextView) findViewById(R.id.textView32);
resultado.setText (formatter.format(resu) + "€" );
}
}