int percent = (score/numberOfQuestions)*100; progressText.setText(score+\"/\"+numberOfQuestions+\" \"+percent+\"%\");
returns 0% no matter what I
Check your integer math. Your code won't work without casting for small values, so just move the operations around:
int percent = 100*score/numberOfQuestions;