Skip to content

Instantly share code, notes, and snippets.

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