Я пытаюсь создать базовый калькулятор c, который имеет 4 кнопки вычисления, дело в том, что мне не разрешено использовать onclickListener, но вместо этого используются обычные методы расчета, калькулятор падает при нажатии кнопки добавления
Вот моя основная деятельность:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Operand1 = (EditText)findViewById(R.id.editText2);
Operand1 = (EditText)findViewById(R.id.editText1);
add = (Button)findViewById(R.id.add);
substract = (Button)findViewById(R.id.substract);
multiply = (Button)findViewById(R.id.multiply);
divide = (Button)findViewById(R.id.divide);
result = (EditText)findViewById(R.id.editText);
}
public void addMethod(View view) {
int num1 = Integer.parseInt(Operand1.getText().toString());
int num2 = Integer.parseInt(Operand2.getText().toString());
int sum = num1 + num2;
}