I am new in Java Android.
I would like to get the name of country (String) using country code in Locale (Ref. ISO 3166-1 numeric)
Tried to do something like that (where [...].getCountry() return int 826):
Locale countryName = new Locale("", String.valueOf(profile.getPersonnalInformation().getAddress().getCountry()));
and get the name of country using this: countryName.getDisplayCountry()
It should normally return me "United Kingdom" but unfortunately I have 826.
How can I do that ?
In advance thank you for your help,