Please help me what I want to do is whenever I clicked a radiobutton the variables increase it's value so i create a method like this but every time I clicked the button the app unfortunately stops.
public void verbal1(){
verbalSc = verbalSc + 1;
Toast.makeText(getBaseContext(), "1", Toast.LENGTH_SHORT).show();
verScore.setText(Integer.toString(verbalSc));
}