Skip to content

Instantly share code, notes, and snippets.

Created April 28, 2015 20:34
Show Gist options
  • Star 75 You must be signed in to star a gist
  • Fork 63 You must be signed in to fork a gist
  • Save anonymous/fa134c55a4a43e8d6004 to your computer and use it in GitHub Desktop.
Save anonymous/fa134c55a4a43e8d6004 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));
}
@adham117
Copy link

2020-12-16 (3)
can some one help me

@rdn025
Copy link

rdn025 commented May 29, 2021

TIP:
The currency used is the one your phone uses, not what is set on your computer. Some phones don't allow you to change the currency explicitly, but your selected language on the phone dictates this, for example choosing English (United Kingdom) will automatically set the currency to "£" (Pounds).
On a Samsung phone in most cases this can be set under Options->Controls->Language and Input

Thnx Buddy!!! It Resolves my problem.

@alf-win
Copy link

alf-win commented Jun 15, 2021

Screenshot 2021-06-15 at 11 39 41 PM

Screenshot 2021-06-15 at 11 49 21 PM

please help !

@simarjeet30
Copy link

@chekwon78 Do try adding a TextView in activity_main.xml and assign it an id like this android:id="@+id/price_text_view".

Thanks soo much ,it worked for me

@Kgarmel
Copy link

Kgarmel commented Jul 25, 2021

Hello,
Need your help to solve the numberFormat error after adding the "Add unambiguous imports on the fly"

image

@Kgarmel
Copy link

Kgarmel commented Jul 25, 2021

It's ok, solved by adding "import java.text.NumberFormat;" . thanks.

@artjomHeim
Copy link

grafik

error: invalid method declaration; return type required
} displayPrice(2*5);
^

@SaiPrajoth
Copy link

don't why my app is crashing after clicking on the ORDER button

@shashankagrawal158
Copy link

error
How do I resolve this error?

@saurav-ux
Copy link

Code of [chetan081] approach

private void displayPrice(int number) {
TextView priceTextView = (TextView) findViewById(R.id.price);
priceTextView.setText("₹ "+ number);
}

@noah12binche
Copy link

android_errer
How do i resolve this error

@Saphiriela
Copy link

After latest update of Android studio it should be this code in Kotlin:

/**
* This method displays the given price on the screen.
*/
private fun displayPrice(number: Int) {
val priceTextView = findViewById(com.example.justjava.R.id.price_text_view) as TextView
priceTextView.setText(java.text.NumberFormat.getCurrencyInstance().format(number))
}

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