Search code examples
androidcurrencycurrency-formatting

Currency get symbol not giving correct symbol for USD, android?


I am using the below code to get the currency symbol for USD

 Currency currency=Currency.getInstance("USD");
currency.getSymbol();

I get the output as US$

But I want the output as $

So what's wrong in this?


Solution

  • This should resolve issue :

    Currency currency = Currency.getInstance(Locale.US);