Skip to content

Instantly share code, notes, and snippets.

@Eng-MFQ
Created July 3, 2018 20:29
Show Gist options
  • Save Eng-MFQ/b95496cf2f349b84dc4133cff08832ee to your computer and use it in GitHub Desktop.
Save Eng-MFQ/b95496cf2f349b84dc4133cff08832ee to your computer and use it in GitHub Desktop.
/**
* Displays the given score for Team B.
*/
public void displayForTeamB(int score) {
TextView scoreView = (TextView) findViewById(R.id.team_b_score);
scoreView.setText(String.valueOf(score));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment