Skip to content

Instantly share code, notes, and snippets.

@khkred
Created June 13, 2018 14:56
Show Gist options
  • Save khkred/33bfcd1dbae64997f9d279e81b36cb77 to your computer and use it in GitHub Desktop.
Save khkred/33bfcd1dbae64997f9d279e81b36cb77 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