Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ahmethalici/032877d9a39e8c1101c10c26a7d4121e to your computer and use it in GitHub Desktop.
Save ahmethalici/032877d9a39e8c1101c10c26a7d4121e to your computer and use it in GitHub Desktop.
display a number (Java. Android)
private void display(int number) {
TextView quantityTextView = (TextView) findViewById(R.id.quantity_text_view);
quantityTextView.setText("" + number);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment