Here is my code to calculate and show them to a label by button press I want to know is there a way to make it automatic...
int one =Integer.parseInt(value_1.getText());
int two =Integer.parseInt(value_2.getText());
int three =Integer.parseInt(value_3.getText());
String answer = String.valueOf(one+two+three);
lbltotal.setText(answer);