Skip to content

Instantly share code, notes, and snippets.

Created April 17, 2015 04:05
Show Gist options
  • Save anonymous/36388d8e8d2608ee1c89 to your computer and use it in GitHub Desktop.
Save anonymous/36388d8e8d2608ee1c89 to your computer and use it in GitHub Desktop.
/**
* This method displays the given quantity value on the screen.
*/
private void displayPrice(int number) {
TextView priceTextView = (TextView) findViewById(R.id.price_text_view);
priceTextView.setText(NumberFormat.getCurrencyInstance().format(number));
}
@vipul1999
Copy link

vipul1999 commented Mar 2, 2019

click on NumberFormate
then press ALT + Enter
then import according to API

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment