Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Juliblues/4cd9fb0c9151e8ffc9966cc8e0c459a9 to your computer and use it in GitHub Desktop.

Select an option

Save Juliblues/4cd9fb0c9151e8ffc9966cc8e0c459a9 to your computer and use it in GitHub Desktop.
/**
* This method displays the given price on the screen.
*/
private void displayPrice(int number) {
TextView priceTextView = (TextView) findViewById(R.id.price_text_view);
priceTextView.setText(NumberFormat.getCurrencyInstance().format(number));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment