This is my first time programming in Java so i can't understand why i can't access the variables outside of a function. I tried to change the variable to final but there's still an error:
The final local variable number cannot be assigned, since it is defined in an enclosing type
When there's no final keyword in the variable, the error is this:
Cannot refer to a non-final variable number inside an inner class defined in a different method
Here's my code:
String[] number = this.nextNumber();
Button submitbutton = (Button)findViewById(R.id.button1);
submitbutton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
// Perform action on clicks
//Toast.makeText(Addition.this, inp.getText(), Toast.LENGTH_SHORT).show();
if(inp.getText().toString().equals("")) {
Toast.makeText(Addition.this, "Please enter your answer", Toast.LENGTH_SHORT).show();
} else {
int answer = Integer.parseInt(inp.getText().toString());
if(Integer.parseInt(number[1]) == answer) {
Toast.makeText(Addition.this, "NICE!", Toast.LENGTH_SHORT).show();
int currentPoint = Integer.parseInt((String) points.getText());
currentPoint = currentPoint + 1;
points.setText(Integer.toString(currentPoint));
number = Addition.this.nextNumber(); // this part doesn't work. why?
} else {
Toast.makeText(Addition.this, "Wrong!", Toast.LENGTH_SHORT).show();
}
}
}
});
I put a comment on the part that doesn't work. please tell me why