How to get currency name by country code?

6.1k Views Asked by At

I want to get the currency name by country code. I get the country code with the following code:

    TelephonyManager manager = (TelephonyManager)getSystemService(TELEPHONY_SERVICE);
    String countrycode=manager.getNetworkCountryIso();
    System.out.println("---->"+countrycode+"<----");

Now I want to get currency by using this country code. How can i do this?

2

There are 2 best solutions below

0
On BEST ANSWER

You can get the currency by using this util and load from country code.

http://developer.android.com/reference/java/util/Currency.html

1
On

I've used the Currency class and the default Locale to get the current currency code (ISO 4217) with the following code:

Currency.getInstance(Locale.getDefault()).getCurrencyCode()

You can also replace the Locale with your custom Country Code ;)