In the game a random number (loadG1) outputted and is shown for 4 seconds. Once the four seconds are up, it disappears and the user must input its value to gain a point. Onc
RESOLVED
I put the following after the score[0]++:
number.setVisibility(View.VISIBLE);
final int loadG1 = generateG1.nextInt(1000000) + 10000;
number.setText(" " + loadG1);
input.getText().clear();
start();
This way, all necessary changes are made and the timer begins anew. I also modified the visibility of the prompt TextView to ensure it only appear when the user is able to input an answer. Took me a while but this has been resolved.