Why I'm getting error on this line ?
textView1.setText((editText1.getText() + editText2.getText() + (editText3.getText)) / 3);
Can we do math operations in setText
method ?
Why I'm getting error on this line ?
textView1.setText((editText1.getText() + editText2.getText() + (editText3.getText)) / 3);
Can we do math operations in setText
method ?
editText1.getText()
is returning a string. Adding the other getText's is performing string concatenation.
You need to convert the values to integer (or float) and then divide:
textView1.setText(String.valueOf((Integer.valueOf(editText1.getText()) + Integer.valueOf(editText2.getText()) + Integer.valueOf(editText3.getText)) / 3));
Replace
textView1.setText((editText1.getText() + editText2.getText() + editText3.getText) / 3);
with
textView1.setText(""+(Integer.parseInt(editText1.getText().toString()) + Integer.parseInt(editText2.getText().toString()) + Integer.parseInt(editText3.getText().toString())) / 3);
Try this :