Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mohanad0/6757a2d68610c81b0c0e2eb9493b48ec to your computer and use it in GitHub Desktop.
Save Mohanad0/6757a2d68610c81b0c0e2eb9493b48ec 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