Search code examples
androidlocale

Locale.SPANISH where is it?


I try to change the language of my application to Spanish, but I cannot find it.

Configuration c = new Configuration(getResources().getConfiguration());
c.locale = Locale.SPANISH; // does not exists

But this works:

c.locale = Locale.ENGLISH;

Could somebody help me?

Thanks!


Solution

  • Did you try Locale spanish = new Locale("es", "ES");

    (see Localization Android)